get method

V? get(
  1. K key
)

Implementation

V? get(K key) => _map.containsKey(key)? _map[key]: null;