clearAllCache method

Future<void> clearAllCache()

Clear cache for all categories.

Implementation

Future<void> clearAllCache() async {
  await _cacheService.clearAllCache();
  developer.log('Cleared all cache', name: 'HiveCachedMovieService');
}