TheMoviePersonCast constructor

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

Implementation

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