SectionInfo constructor

SectionInfo({
  1. required int section,
  2. required int numberItems,
  3. required int sectionBegin,
  4. bool isExistHeader = false,
  5. bool isExistFooter = false,
  6. bool isHeaderStick = false,
})

Implementation

SectionInfo(
    {required this.section,
    required this.numberItems,
    required this.sectionBegin,
    this.isExistHeader = false,
    this.isExistFooter = false,
    this.isHeaderStick = false});