getUpcomingMoviesWithCacheInfo method
Get upcoming movies with cache information.
Implementation
Future<CacheResult<List<Movie>>> getUpcomingMoviesWithCacheInfo() async {
return _getMoviesWithCache(
CacheCategory.upcoming,
() => _movieService.getUpcomingMovies(),
);
}