addValues method

  1. @override
void addValues(
  1. K key,
  2. Iterable<V> values
)
inherited

Adds an association from the given key to each of the given values.

Implementation

@override
void addValues(K key, Iterable<V> values) {
  C collection = _map.putIfAbsent(key, _create);
  _addAll(collection, values);
}