MetadataModel constructor
MetadataModel({
- required String id,
- required String parentId,
- String? title,
- String? category,
- MetadataMovieModel? movie,
- MetadataShowModel? show,
- MetadataSeasonModel? season,
- MetadataEpisodeModel? episode,
- MetadataBookModel? book,
- 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,
});