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