EpubChapter constructor

EpubChapter({
  1. required String title,
  2. required String href,
  3. required String id,
  4. required List<EpubChapter> subitems,
})

Implementation

EpubChapter({
  required this.title,
  required this.href,
  required this.id,
  required this.subitems,
});