clearAllCache method

Future<void> clearAllCache()

Clear all cached images

Implementation

Future<void> clearAllCache() async {
  await cacheManager.emptyCache();
  debugPrint('All cache cleared');
}