EpubMetadata constructor

EpubMetadata({
  1. String? title,
  2. String? author,
  3. String? language,
  4. String? identifier,
  5. String? publisher,
  6. String? description,
  7. String? date,
  8. String? subject,
  9. String? coverImage,
})

Implementation

EpubMetadata({
  this.title,
  this.author,
  this.language,
  this.identifier,
  this.publisher,
  this.description,
  this.date,
  this.subject,
  this.coverImage,
});