getConfig<T> static method
Get config value from current environment.
Implementation
static T? getConfig<T>(String key) {
return _currentEnvironment?.config[key] as T?;
}
Get config value from current environment.
static T? getConfig<T>(String key) {
return _currentEnvironment?.config[key] as T?;
}