removeEntry static method
Removes a specific query cache entry by key.
Example:
BloomData.removeEntry(['user', 1]);
Implementation
static void removeEntry(List<dynamic> key) {
final keyStr = normalizeKey(key);
_cache.remove(keyStr);
_disposeController(keyStr);
}