get method

V? get(
  1. Object? key
)

Returns the value associated with key, or null if absent.

Implementation

V? get(Object? key) => _map[key];