clearCacheForCategory method
- CacheCategory category
Clear cache for a specific category.
Implementation
Future<void> clearCacheForCategory(CacheCategory category) async {
await _cacheService.clearCacheForCategory(category);
developer.log(
'Cleared cache for ${category.value}',
name: 'HiveCachedMovieService',
);
}