removeAll method

void removeAll(
  1. Object? key
)

As SetMultimap.removeAll but returns nothing.

Implementation

void removeAll(Object? key) {
  if (key is K) {
    _makeWriteableCopy();

    _builtMap = _builtMap;
    _builderMap[key] = SetBuilder<V>();
  }
}