get method

String? get(
  1. String key
)

Returns the value for the given key, or null if not present.

Implementation

String? get(String key) => _entries[key];