clearCacheForUrl static method

Future<void> clearCacheForUrl(
  1. String url
)

Clear specific cache

Implementation

static Future<void> clearCacheForUrl(String url) async {
  await instance._cacheManager.remove(url);
}