EpubChapter constructor

const EpubChapter(
  1. String title,
  2. String contentFileName,
  3. String? anchor,
  4. String htmlContent,
  5. List<EpubChapter> subChapters,
)

Implementation

const EpubChapter(this.title, this.contentFileName, this.anchor,
    this.htmlContent, this.subChapters)
    : super();