clear method
Removes all data from the multimap.
Implementation
@override
void clear() {
_map.forEach((K key, C value) => _clear(value));
_map.clear();
}
Removes all data from the multimap.
@override
void clear() {
_map.forEach((K key, C value) => _clear(value));
_map.clear();
}