entry method

MapEntry<K, ISet<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, ISet<V>?> entry(K key) => _mapOfSets.entry(key);