EpubChapter constructor

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

Implementation

const EpubChapter({
  this.title,
  this.contentFileName,
  this.anchor,
  this.htmlContent,
  this.subChapters = const <EpubChapter>[],
});