getOrNull static method

String? getOrNull(
  1. String key
)

Retrieves the string value for key, or returns null if not found.

Implementation

static String? getOrNull(String key) => _env[key];