remove method
Remove a specific entry from cache
Implementation
void remove(String query) {
final normalizedQuery = _normalizeQuery(query);
_cache.remove(normalizedQuery);
}
Remove a specific entry from cache
void remove(String query) {
final normalizedQuery = _normalizeQuery(query);
_cache.remove(normalizedQuery);
}