clear method

void clear ()
inherited

Removes all data from the multimap.

Implementation

void clear() {
  _map.forEach((K key, Iterable<V> value) => _clear(value));
  _map.clear();
}