ChapterChipListWidget constructor

const ChapterChipListWidget({
  1. Key? key,
  2. required List<ChapterInfo> chapters,
  3. required int currentIndex,
  4. required ValueChanged<int> onChapterSelected,
})

Implementation

const ChapterChipListWidget({
  super.key,
  required this.chapters,
  required this.currentIndex,
  required this.onChapterSelected,
});