TheMoviePersonCrew constructor

TheMoviePersonCrew({
  1. int? id,
  2. String? department,
  3. String? originalLanguage,
  4. String? originalTitle,
  5. String? job,
  6. String? overview,
  7. int? voteCount,
  8. bool? video,
  9. String? posterPath,
  10. String? backdropPath,
  11. String? title,
  12. num? popularity,
  13. List<int>? genreIds,
  14. num? voteAverage,
  15. bool? adult,
  16. String? releaseDate,
  17. String? creditId,
})

Implementation

TheMoviePersonCrew(
    {this.id,
    this.department,
    this.originalLanguage,
    this.originalTitle,
    this.job,
    this.overview,
    this.voteCount,
    this.video,
    this.posterPath,
    this.backdropPath,
    this.title,
    this.popularity,
    this.genreIds,
    this.voteAverage,
    this.adult,
    this.releaseDate,
    this.creditId});