replaceAll method

void replaceAll(
  1. K key,
  2. Iterable<V> values
)
inherited

Replaces the key with each of the values.

Implementation

void replaceAll(K key, Iterable<V> values) => lookupValues(key)
  ..polymorphicClear()
  ..polymorphicAddAll(values);