addAll method

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

Adds associations from key to each of values.

Implementation

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