EpubReaderTableOfContents constructor

const EpubReaderTableOfContents({
  1. required EpubController controller,
  2. EdgeInsetsGeometry? padding,
  3. Widget itemBuilder(
    1. BuildContext context,
    2. int index,
    3. EpubViewChapter chapter,
    4. int itemCount,
    )?,
  4. Widget? loader,
  5. Key? key,
})

Implementation

const EpubReaderTableOfContents({
  required this.controller,
  this.padding,
  this.itemBuilder,
  this.loader,
  Key? key,
}) : super(key: key);