removeAll method

void removeAll(
  1. K key, [
  2. Iterable<V>? values
])
inherited

Removes associations from key to each of values.

Implementation

void removeAll(K key, [Iterable<V>? values]) => values == null
    ? lookupValues(key).polymorphicClear()
    : lookupValues(key).polymorphicRemoveAll(values);