getShowPeople method

Future<ShowPeople> getShowPeople(
  1. String id, {
  2. bool extendedFull = false,
  3. bool includeGuestStars = false,
})

Returns all cast and crew for a show, including the episode_count for which they appears.

Each cast member will have a characters array and a standard person object. The crew object will be broken up into production, art, crew, costume & make-up, directing, writing, sound, camera, visual effects, lighting, editing, and created by (if there are people for those crew positions). Each of those members will have a jobs array and a standard person object.

Guest Stars: If you add includeGuestStars, it will return all guest stars that appeared in at least 1 episode of the show. 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

✨ Extended Info

Implementation

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