remove method

void remove(
  1. String key
)

Removes an item from the cache

  • Parameters:
    • key: The key of the item to remove

Implementation

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