MetadataModel constructor

MetadataModel({
  1. required String id,
  2. required String parentId,
  3. String? title,
  4. String? category,
  5. MetadataMovieModel? movie,
  6. MetadataShowModel? show,
  7. MetadataSeasonModel? season,
  8. MetadataEpisodeModel? episode,
  9. MetadataBookModel? book,
  10. MetadataAudiobookModel? audiobook,
})

Implementation

MetadataModel({
  required this.id,
  required this.parentId,
  this.title,
  this.category,
  this.movie,
  this.show,
  this.season,
  this.episode,
  this.book,
  this.audiobook,
});