Retrieves the value of the specified environment variable. If the key doesn't exist, returns the defaultValue.
defaultValue
static String get(String key, {String defaultValue = ''}) { return _env[key] ?? defaultValue; }