ListItem constructor

ListItem(
  1. int rank,
  2. int id,
  3. String listedAt,
  4. String? notes,
  5. String type,
  6. Movie? movie,
  7. Show? show,
  8. Season? season,
  9. Episode? episode,
  10. Person? person,
)

Implementation

ListItem(this.rank, this.id, this.listedAt, this.notes, this.type, this.movie, this.show, this.season, this.episode,
    this.person);