getShowSummary method

Future<Show> getShowSummary(
  1. String id, {
  2. bool extendedFull = false,
})

Returns a single shows's details.

If you request extended info, the airs object is relative to the show's country. You can use the day, time, and timezone to construct your own date then convert it to whatever timezone your user is in.

Note: When getting full extended info, the status field can have a value of returning series (airing right now), in production (airing soon), planned (in development), canceled, or ended.

id - Trakt ID, Trakt slug, or IMDB ID

✨ Extended Info

Implementation

Future<Show> getShowSummary(String id, {bool extendedFull = false}) async {
  return await _manager._get<Show>("shows/$id", extendedFull: extendedFull);
}