refresh method

Future<KacheSnapshot<T>> refresh()

Forces a fetch with this handle's fetcher, ignoring freshness.

Implementation

Future<KacheSnapshot<T>> refresh() {
  _ensureActive();
  return _refreshWith(KacheEventTrigger.refresh);
}