operator [] method

String? operator [](
  1. String key
)

Reads the value for key from the underlying map.

Returns null if key is absent. See isDefined.

Implementation

String? operator [](String key) => _map[key];