removeEntry static method

void removeEntry(
  1. List key
)

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);
}