getConfigBoolValue method

bool getConfigBoolValue(
  1. String key
)

Implementation

bool getConfigBoolValue(String key) {
  if (config != null) return config!.getBool(key);

  return false;
}