remove method

void remove(
  1. String key
)

Removes a specific key from the cache.

Implementation

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