EpubBook constructor

const EpubBook(
  1. String? title,
  2. String author,
  3. List<String> authorList,
  4. EpubSchema schema,
  5. EpubContent content,
  6. Image? coverImage,
  7. List<EpubChapter> chapters,
)

Implementation

const EpubBook(this.title, this.author, this.authorList, this.schema,
    this.content, this.coverImage, this.chapters)
    : super();