TheMovieDetail constructor

TheMovieDetail({
  1. bool? adult,
  2. String? backdropPath,
  3. TheMovieDetailBelongsToCollection? belongsToCollection,
  4. int? budget,
  5. List<TheMovieDetailGenres>? genres,
  6. String? homepage,
  7. int? id,
  8. String? imdbId,
  9. String? originalLanguage,
  10. String? originalTitle,
  11. String? overview,
  12. num? popularity,
  13. String? posterPath,
  14. List<TheMovieDetailProductionCompanies>? productionCompanies,
  15. List<TheMovieDetailProductionCountries>? productionCountries,
  16. String? releaseDate,
  17. int? revenue,
  18. int? runtime,
  19. List<TheMovieDetailSpokenLanguages>? spokenLanguages,
  20. String? status,
  21. String? tagline,
  22. String? title,
  23. bool? video,
  24. num? voteAverage,
  25. int? voteCount,
})

Implementation

TheMovieDetail(
    {this.adult,
    this.backdropPath,
    this.belongsToCollection,
    this.budget,
    this.genres,
    this.homepage,
    this.id,
    this.imdbId,
    this.originalLanguage,
    this.originalTitle,
    this.overview,
    this.popularity,
    this.posterPath,
    this.productionCompanies,
    this.productionCountries,
    this.releaseDate,
    this.revenue,
    this.runtime,
    this.spokenLanguages,
    this.status,
    this.tagline,
    this.title,
    this.video,
    this.voteAverage,
    this.voteCount});