EpubChapterRef.named constructor

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

Implementation

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