maybeGet abstract method

String? maybeGet(
  1. String key, {
  2. String? fallback,
})

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

Implementation

String? maybeGet(String key, {String? fallback});