Retrieves the value of an environment variable.
Returns null if the variable is not set.
null
final apiKey = env.get('API_KEY'); if (apiKey != null) { // Use the API key }
@override String? get(String key) => _env[key];