SectionTableView constructor

const SectionTableView({
  1. Key? key,
  2. required int sectionCount,
  3. required RowCountInSectionCallBack numOfRowInSection,
  4. required CellAtIndexPathCallBack cellAtIndexPath,
  5. SectionHeaderCallBack? headerInSection,
  6. Widget? divider,
  7. ScrollController? controller,
  8. 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);