getenv method

String getenv(
  1. String key
)

Returns the value of key, or '' if missing.

Implementation

String getenv(String key) => lookupEnv(key).value ?? '';