BookReaderScreen constructor

const BookReaderScreen({
  1. Key? key,
  2. required Function onTapNextSection,
  3. String? nextSectionTitle,
  4. required Book book,
  5. required int sectionIndex,
})

Implementation

const BookReaderScreen(
    {Key? key,
    required this.onTapNextSection,
    this.nextSectionTitle,
    required this.book,
    required this.sectionIndex})
    : super(key: key);