TheMovieModel constructor

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

Implementation

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