SectionsList constructor
const
SectionsList({
- Key? key,
- required ValueChanged<
int> sectionTap, - required int sectionIndex,
- required List<
MainSection> sections,
Implementation
const SectionsList({
Key? key,
required this.sectionTap,
required int sectionIndex,
required this.sections,
}) : _sectionIndex = sectionIndex,
super(key: key);