getOrNull method

ISet<V>? getOrNull(
  1. K key
)

Return the set for the given key. If the key doesn't exist, return null.

Implementation

ISet<V>? getOrNull(K key) => _mapOfSets[key];