removeWhere method
Removes all entries that satisfy the given test.
Calls test for each key-value pair and removes entries where
test returns true. Notifies subscribers after removal.
Implementation
@override
void removeWhere(bool Function(K key, V value) test) {
value.removeWhere(test);
notify();
}