setConfig method

void setConfig(
  1. ConfigKey key,
  2. bool isEnabled, [
  3. List<String>? exceptionList
])

Implementation

void setConfig(ConfigKey key, bool isEnabled, [List<String>? exceptionList]) {
  _configMap[key] = ConfigItem(key, isEnabled, exceptionList);
}