MetadataAudiobookModel constructor

MetadataAudiobookModel({
  1. List<String>? authors,
  2. String? publisher,
  3. String? publishedDate,
  4. String? description,
  5. int? pageCount,
  6. String? language,
  7. String? thumbnail,
  8. String? thumbnailBlurHash,
  9. List<MetadataAudiobookChapter>? chapters,
})

Implementation

MetadataAudiobookModel({
  this.authors,
  this.publisher,
  this.publishedDate,
  this.description,
  this.pageCount,
  this.language,
  this.thumbnail,
  this.thumbnailBlurHash,
  this.chapters,
});