clearAllCache method

Future<void> clearAllCache()

Invalidates all cache and notifies listeners.

Implementation

Future<void> clearAllCache() async {
  await _service.clearAllCache();
  notifyListeners();
}