remove method

void remove(
  1. K key
)

Removes a key from the cache

Implementation

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