getEpisodePeople method

Future<EpisodePeople> getEpisodePeople(
  1. String id,
  2. int seasonNumber,
  3. int episodeNumber, {
  4. bool extendedFull = false,
  5. bool includeGuestStars = false,
})

Returns all lists that contain this episode.

By default, personal lists are returned sorted by the most popular.

If you add includeGuestStars, it will return all guest stars that appeared in the episode. Note: This returns a lot of data, so please only use this extended parameter if you actually need it!

id - Trakt ID, Trakt slug, or IMDB ID seasonNumber - season number episodeNumber - episode number includeGuestStars - whether to return all guest stars that appeared in the episode.

✨ Extended Info

Implementation

Future<EpisodePeople> getEpisodePeople(
    String id, int seasonNumber, int episodeNumber,
    {bool extendedFull = false, bool includeGuestStars = false}) async {
  return await _manager._get<EpisodePeople>(
      "shows/$id/seasons/$seasonNumber/episodes/$episodeNumber/people",
      extendedFull: extendedFull,
      includeGuestStars: includeGuestStars);
}