SectionTableView constructor
const
SectionTableView({
- Key? key,
- required int sectionCount,
- required RowCountInSectionCallBack numOfRowInSection,
- required CellAtIndexPathCallBack cellAtIndexPath,
- SectionHeaderCallBack? headerInSection,
- Widget? divider,
- ScrollController? controller,
- bool reverse = false,
Implementation
const SectionTableView({
Key? key,
required this.sectionCount,
required this.numOfRowInSection,
required this.cellAtIndexPath,
this.headerInSection,
this.divider,
this.controller,
this.reverse = false,
}) : super(key: key);