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