SectionTableView constructor

SectionTableView({
  1. Key? key,
  2. ScrollController? controller,
  3. required int sectionCount,
  4. required RowCountInSectionCallBack numOfRowInSection,
  5. required CellAtIndexPathCallBack cellAtIndexPath,
  6. SectionHeaderCallBack? headerInSection,
  7. Widget? divider,
  8. SectionHeaderHeightCallBack? sectionHeaderHeight,
  9. DividerHeightCallBack? dividerHeightBlock,
  10. CellHeightAtIndexPathCallBack? cellHeightAtIndexPath,
  11. SectionChangeNotifier? sectionChangeNotifier,
  12. bool reverse = false,
})

Implementation

SectionTableView({
  Key? key,
  this.controller,
  required this.sectionCount,
  required this.numOfRowInSection,
  required this.cellAtIndexPath,
  this.headerInSection,
  this.divider,
  this.sectionHeaderHeight,
  this.dividerHeightBlock,
  this.cellHeightAtIndexPath,
  this.sectionChangeNotifier,
  this.reverse = false,
}) : super(key: key);