getConfig method
Get a Config
Implementation
Object? getConfig(String name) {
if (configs.containsKey(name)) {
return configs[name];
}
if (profile != null && profile!.configs.containsKey(name)) {
return profile?.configs[name];
}
return null;
}