invalidateAll method

void invalidateAll()

Invalidates all cached ResultNotifiers.

See ResultNotifier.invalidate for more information.

Implementation

void invalidateAll() {
  _cache.forEach((key, cacheEntry) => cacheEntry.notifier.invalidate());
}