onRemove method
void
onRemove(
- E e
Implementation
void onRemove(E e) {
for (final entry in _cache.entries) {
final value = entry.value;
if (value.check(e)) {
value.data.remove(e);
}
}
}