getPersonShowCredits method

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

Returns all shows where this person is in the cast or crew, including the episode_count for which they appear.

Each cast object will have a characters array and a standard show object. If series_regular is true, this person is a series regular and not simply a guest star. 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 show object.

id - Trakt ID, Trakt slug, or IMDB ID

✨ Extended Info

Implementation

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