getPopularMovies method

Future<List<Movie>> getPopularMovies({
  1. bool extendedFull = false,
  2. RequestPagination? pagination,
  3. MovieFilters? filters,
})

Returns the most popular movies. Popularity is calculated using the rating percentage and the number of ratings.

📄 Pagination ✨ Extended Info 🎚 Filters

Implementation

Future<List<Movie>> getPopularMovies(
    {bool extendedFull = false,
    RequestPagination? pagination,
    MovieFilters? filters}) async {
  return await _manager._getList("movies/popular",
      extendedFull: extendedFull, pagination: pagination, filters: filters);
}