VitTableHeaders constructor

const VitTableHeaders({
  1. Key? key,
  2. required List<VitTableColumn> columns,
  3. required VitTableStyle style,
  4. int? sortingColumnIndex,
  5. bool isAscSort = true,
  6. double? rightSpace,
  7. bool allowExpand = true,
  8. bool isReordering = false,
  9. VitTableReorderMode reorderMode = VitTableReorderMode.row,
  10. double horizontalMargin = 0,
})

Implementation

const VitTableHeaders({
  super.key,
  required this.columns,
  required this.style,
  this.sortingColumnIndex,
  this.isAscSort = true,
  this.rightSpace,
  this.allowExpand = true,
  this.isReordering = false,
  this.reorderMode = VitTableReorderMode.row,
  this.horizontalMargin = 0,
});