set method
Sets the value of an environment variable.
This method allows programmatically setting environment variables, which can be useful for testing or dynamic configuration.
env.set('API_KEY', 'secret-key');
env.set('DEBUG', 'true');
Implementation
@override
void set(String key, String value) {
_env[key] = value;
}