remove method

void remove(
  1. K key
)

Remove a single value from the cache

Implementation

void remove(K key) {
  _cache.remove(key);
}