TMDBMovie constructor

TMDBMovie({
  1. int? id,
  2. String? title,
  3. int? year,
  4. String? producer,
  5. String? synopsys,
  6. String? thumbnailUrl,
  7. int? tmdbId,
})

Implementation

TMDBMovie(
    {this.id,
    this.title,
    this.year,
    this.producer,
    this.synopsys,
    this.thumbnailUrl,
    this.tmdbId});