entry method

MapEntry<K, V?> entry(
  1. K key
)

Return the MapEntry for the given key. For key/value pairs that don't exist, it will return MapEntry(key, null);.

Implementation

MapEntry<K, V?> entry(K key) => MapEntry(key, _m[key]);