get method
Implementation
dynamic get(String key) {
final dynamic res = hostConfig[key];
assert(res != null, "Could not find hostConfig[$key]");
return res;
}
dynamic get(String key) {
final dynamic res = hostConfig[key];
assert(res != null, "Could not find hostConfig[$key]");
return res;
}