Returns the value of the environment variable specified by key, or the fallback value if not found.
key
fallback
@override String get(String key, {String? fallback}) { return dotenv.get(key, fallback: fallback); }