getEnvironmentVariable method
Retrieves the value of an environment variable
Implementation
String? getEnvironmentVariable(String key) {
// First check our local copy, then fall back to Platform.environment
return _environmentVariables[key] ?? Platform.environment[key];
}