clearAllCache method

Future<void> clearAllCache()

Clears all cached data.

Implementation

Future<void> clearAllCache() async {
  developer.log('Clearing all cached data', name: 'CachedMovieService');
  await _cacheService.clearAllCache();
}