get method

String? get(
  1. String key
)

Retrieve the value of an environment variable.

Returns null if the supplied environment variable is not defined.

Implementation

String? get(String key) => _delegate.get(key);