evictDerived method

int evictDerived(
  1. String key
)

Evicts every entry derived from key, returning how many were removed.

Implementation

int evictDerived(String key) {
  final evicted = _evictDerived(key);
  if (evicted > 0) notifyListeners();
  return evicted;
}