Episode constructor

Episode(
  1. int season,
  2. int number,
  3. String? title,
  4. Ids ids,
  5. String? overview,
  6. double? rating,
  7. int? votes,
  8. int? runtime,
  9. int? commentCount,
  10. String? firstAired,
  11. String? updatedAt,
  12. List<String>? availableTranslations,
)

Implementation

Episode(
    this.season,
    this.number,
    this.title,
    this.ids,
    this.overview,
    this.rating,
    this.votes,
    this.runtime,
    this.commentCount,
    this.firstAired,
    this.updatedAt,
    this.availableTranslations);