removeWhere method
- @override
override
Removes all entries of this map that satisfy the given predicate.
Implementation
@override
void removeWhere(bool test(K key, V value)) {
_inverse.removeWhere((v, k) => test(k, v));
_map.removeWhere(test);
}