env function Null safety
- String key
get value from the env file by the key if the key is null it will reutrn empty String
Implementation
String env(String key) {
return envOrNull(key) ?? '';
}
get value from the env file by the key if the key is null it will reutrn empty String
String env(String key) {
return envOrNull(key) ?? '';
}