removeItem method

void removeItem(
  1. CacheItem item
)

Removes the given item from the cache

Implementation

void removeItem(CacheItem item) {
  _cache?.remove(item);
}