RatedItem constructor

RatedItem(
  1. int rating,
  2. String ratedAt,
  3. String type,
  4. Movie? movie,
  5. Episode? episode,
  6. Season? season,
  7. Show? show
)

Implementation

RatedItem(this.rating, this.ratedAt, this.type, this.movie, this.episode,
    this.season, this.show);