getConfig method

Object? getConfig(
  1. String name
)

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;
}