removeWhere method

void removeWhere(
  1. bool test(
    1. K key,
    2. V value
    )
)

Implementation

void removeWhere(bool Function(K key, V value) test) {
  value.removeWhere(test);
  set(value, force: true);
}