SliverGroupTableList constructor

const SliverGroupTableList({
  1. Key? key,
  2. int numberOfSections = 1,
  3. required NumberOfRowsInSection? numberOfRowsInSection,
  4. required CellForRowAtIndexPath? cellForRowAtIndexPath,
  5. SeparatorAtIndexPath? separatorAtIndexPath,
  6. SectionSeparator? sectionSeparator,
  7. HeaderInSection? headerInSection,
  8. FooterInSection? footerInSection,
  9. Widget overallHeader()?,
  10. Widget overallFooter()?,
  11. Widget placeholderView()?,
  12. DidSelectAtIndexPath? didSelectAtIndexPath,
})

Implementation

const SliverGroupTableList(
    {Key? key,
    this.numberOfSections = 1,
    required this.numberOfRowsInSection,
    required this.cellForRowAtIndexPath,
    this.separatorAtIndexPath,
    this.sectionSeparator,
    this.headerInSection,
    this.footerInSection,
    this.overallHeader,
    this.overallFooter,
    this.placeholderView,
    this.didSelectAtIndexPath})
    : super(key: key);