remove method

void remove(
  1. String query
)

Remove a specific entry from cache

Implementation

void remove(String query) {
  final normalizedQuery = _normalizeQuery(query);
  _cache.remove(normalizedQuery);
}