getConfigValue<T> method

T? getConfigValue<T>(
  1. String key
)

Get configuration value from current environment

Implementation

T? getConfigValue<T>(String key) {
  return currentEnvironment.config[key] as T?;
}