invalidate method

void invalidate(
  1. K key
)

Invalidates the ResultNotifier with the specified key.

See ResultNotifier.invalidate for more information.

Implementation

void invalidate(K key) {
  _cache[key]?.notifier.invalidate();
}