SectionInfo constructor

SectionInfo({
  1. required String name,
  2. required int startIndex,
  3. required int endIndex,
})

Implementation

SectionInfo({
  required this.name,
  required this.startIndex,
  required this.endIndex,
});