getPopularMovies method

Future<List<Movie>> getPopularMovies()

Get popular movies with caching.

Implementation

Future<List<Movie>> getPopularMovies() async {
  final result = await _getMoviesWithCache(
    CacheCategory.popular,
    () => _movieService.getPopularMovies(),
  );
  return result.data;
}