Season constructor

Season(
  1. int number,
  2. Ids ids,
  3. String? title,
  4. String? overview,
  5. String? network,
  6. double? rating,
  7. int? votes,
  8. int? episodeCount,
  9. int? airedEpisodes,
  10. String? firstAired,
  11. String? updatedAt,
)

Implementation

Season(
    this.number,
    this.ids,
    this.title,
    this.overview,
    this.network,
    this.rating,
    this.votes,
    this.episodeCount,
    this.airedEpisodes,
    this.firstAired,
    this.updatedAt);