get abstract method

String? get(
  1. String key
)

Returns the raw string value for the given key, or null if not found.

Example:

final host = env.get('DATABASE_HOST');

Implementation

String? get(String key);