envOrNull function Null safety
- String key
get value from the env file by the key
Implementation
String? envOrNull(String key) {
return _values[key] as String?;
}
get value from the env file by the key
String? envOrNull(String key) {
return _values[key] as String?;
}