getPopularShows method

Future<List<Show>> getPopularShows({
  1. bool extendedFull = false,
  2. RequestPagination? pagination,
  3. ShowFilters? filters,
})

Returns the most popular shows.

Popularity is calculated using the rating percentage and the number of ratings.

📄 Pagination ✨ Extended Info 🎚 Filters

Implementation

Future<List<Show>> getPopularShows(
    {bool extendedFull = false,
    RequestPagination? pagination,
    ShowFilters? filters}) async {
  return await _manager._getList("shows/popular",
      extendedFull: extendedFull, pagination: pagination, filters: filters);
}