getEnvValue method

String? getEnvValue(
  1. String key
)

取值

Implementation

String? getEnvValue(String key) {
  return _config?.envs![key];
}