clearCache static method

Future<void> clearCache()

Clear cache from memory and disk

Implementation

static Future<void> clearCache() async {
  clearMemoryImageCache();
  await clearDiskCachedImages();
}