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