clearCache method

Future<void> clearCache(
  1. String cacheKey
)

Clear a specific cache entry.

Implementation

Future<void> clearCache(String cacheKey) async {
  await ny_cache.cache().clear(cacheKey);
}