EpubChapter.named constructor

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

Implementation

const EpubChapter.named(
    {required this.title,
    required this.contentFileName,
    required this.anchor,
    required this.htmlContent,
    required this.subChapters})
    : super();