get method

  1. @override
String get(
  1. String key, {
  2. String? fallback,
})
override

Returns the value of the environment variable specified by key, or the fallback value if not found.

Implementation

@override
String get(String key, {String? fallback}) {
  return dotenv.get(key, fallback: fallback);
}