SectionTableView constructor
SectionTableView({
- Key? key,
- ScrollController? controller,
- required int sectionCount,
- required RowCountInSectionCallBack numOfRowInSection,
- required CellAtIndexPathCallBack cellAtIndexPath,
- SectionHeaderCallBack? headerInSection,
- Widget? divider,
- SectionHeaderHeightCallBack? sectionHeaderHeight,
- DividerHeightCallBack? dividerHeightBlock,
- CellHeightAtIndexPathCallBack? cellHeightAtIndexPath,
- SectionChangeNotifier? sectionChangeNotifier,
- 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);