getMoviePeople method

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

Returns all cast and crew for a movie.

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, and editing (if there are people for those crew positions). Each of those members will have a jobs array and a standard person object.

id - Trakt ID, Trakt slug, or IMDB ID

✨ Extended Info

Implementation

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