MetadataMovieModel constructor

MetadataMovieModel({
  1. String? year,
  2. String? rated,
  3. String? released,
  4. String? runtime,
  5. String? genre,
  6. String? director,
  7. String? writer,
  8. String? actors,
  9. String? plot,
  10. String? language,
  11. String? country,
  12. String? awards,
  13. String? poster,
  14. String? posterBlurHash,
  15. String? logoBlurHash,
  16. String? backdrop,
  17. String? backdropBlurHash,
  18. List<Rating>? ratings,
  19. String? metascore,
  20. String? imdbRating,
  21. String? imdbVotes,
  22. String? imdbID,
  23. String? type,
  24. String? dvd,
  25. String? boxOffice,
  26. String? production,
  27. String? website,
})

Implementation

MetadataMovieModel({
  this.year,
  this.rated,
  this.released,
  this.runtime,
  this.genre,
  this.director,
  this.writer,
  this.actors,
  this.plot,
  this.language,
  this.country,
  this.awards,
  this.poster,
  this.posterBlurHash,
  this.logo,
  this.logoBlurHash,
  this.backdrop,
  this.backdropBlurHash,
  this.ratings,
  this.metascore,
  this.imdbRating,
  this.imdbVotes,
  this.imdbID,
  this.type,
  this.dvd,
  this.boxOffice,
  this.production,
  this.website,
});