Return the key/value entry for the given key. If the key is not in the map, return MapEntry(key, null).
key
MapEntry(key, null)
@override MapEntry<K, V?> entryOrNullValue(K key) => MapEntry(key, _map[key]);