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}) {
  throw UnsupportedError(
      'You are using a No-Op Environment Plugin, which does not support this operation.');
}