getMostAnticipatedMovies method

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

Returns the most anticipated movies based on the number of lists a movie appears on.

📄 Pagination ✨ Extended Info 🎚 Filters

Implementation

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