getTrendingShows method

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

Returns all shows being watched right now.

Shows with the most users are returned first.

📄 Pagination ✨ Extended Info 🎚 Filters

Implementation

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