resetStore function

void resetStore (
  1. BuildContext context
)

Implementation

void resetStore(BuildContext context) {
  _QueryNotifier provider = Provider.of<_QueryNotifier>(context, listen: false);
  provider.cache.clear();
}