getConfig function

String getConfig(
  1. String key, {
  2. String? defaultValue,
})

get config with non-null from system config

Implementation

String getConfig(String key, {String? defaultValue}) =>
    SystemConfig.get(key, defaultValue: defaultValue);