remove method

void remove(
  1. String key
)

Remove an item from the cache

Implementation

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