You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
575 B
15 lines
575 B
import 'system_config.dart'; |
|
|
|
/// get config or null from system config |
|
String? getConfigOrNull(String key, {String? defaultValue}) => |
|
SystemConfig.getOrNull(key, defaultValue: defaultValue); |
|
|
|
/// get config with non-null from system config |
|
String getConfig(String key, {String? defaultValue}) => |
|
SystemConfig.get(key, defaultValue: defaultValue); |
|
|
|
/// check has config key or not from system config |
|
bool hasConfigkey(String key) => SystemConfig.containsKey(key); |
|
|
|
/// set config into memory |
|
void setConfig(String key, String? value) => SystemConfig.set(key, value);
|
|
|