remove method

  1. @override
void remove(
  1. Object key
)
override

Removes the value associated with key from the cache.

Implementation

@override
void remove(Object key) {
  removeEntry(key, EvictionReason.removed);
}