getMostAnticipatedShows method

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

Returns the most anticipated shows based on the number of lists a show appears on.

📄 Pagination ✨ Extended Info 🎚 Filters

Implementation

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