removeWhere method
Removes entries that satisfy the given predicate.
Implementation
void removeWhere(bool Function(K key, V value) predicate) {
_cache.removeWhere(predicate);
}
Removes entries that satisfy the given predicate.
void removeWhere(bool Function(K key, V value) predicate) {
_cache.removeWhere(predicate);
}