getNowPlayingMoviesWithCacheInfo method
Get now playing movies with cache information.
Implementation
Future<CacheResult<List<Movie>>> getNowPlayingMoviesWithCacheInfo() async {
return _getMoviesWithCache(
CacheCategory.nowPlaying,
() => _movieService.getNowPlayingMovies(),
);
}