env function

String env(
  1. 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) ?? '';
}