configurable library

Functions

getConfig(String key, {String? defaultValue}) String
get config with non-null from system config
getConfigOrNull(String key, {String? defaultValue}) String?
get config or null from system config
getConfigOrNullAsync(String key, {String? defaultValue}) Future<String?>
get config or null from system config in async
hasConfigkey(String key) bool
check has config key or not from system config
hasConfigkeyAsync(String key) Future<bool>
check has config key or not from system config in async function
removeConfig(String key) → void
remove config into memory or custom provider
removeConfigAsync(String key) Future<void>
remove config into memory or custom provider in async function
setConfig(String key, String? value) → void
set config into memory or custom provider
setConfigAsync(String key, String? value) Future<void>
set config into memory or custom provider in async function