UpTable constructor

const UpTable({
  1. Key? key,
  2. bool showCheckboxColumn = false,
  3. bool isLastRowFooter = false,
  4. UpColorType? colorType,
  5. int? sortColumnIndex,
  6. dynamic onSortChange(
    1. int,
    2. bool
    )?,
  7. bool sortAscending = false,
  8. required List<String> columns,
  9. UpStyle? style,
  10. Function? onSelectChanged,
  11. required List<UpRow> rows,
  12. MaterialStateProperty<MouseCursor?>? mouseCursor,
})

Implementation

const UpTable({
  super.key,
  this.showCheckboxColumn = false,
  this.isLastRowFooter = false,
  this.colorType,
  this.sortColumnIndex,
  this.onSortChange,
  this.sortAscending = false,
  required this.columns,
  this.style,
  this.onSelectChanged,
  required this.rows,
  this.mouseCursor,
});