load method

Future<KacheSnapshot<T>> load()

Loads cache data and applies this handle's load policy.

Implementation

Future<KacheSnapshot<T>> load() {
  _ensureActive();
  _didStartAutomaticLoad = true;
  return _loadWith(KacheEventTrigger.load);
}