UpTable constructor

const UpTable({
  1. Key? key,
  2. bool showCheckboxColumn = false,
  3. bool isLastRowFooter = false,
  4. UpColorType? colorType,
  5. required List<String> columns,
  6. UpStyle? style,
  7. Function? onSelectChanged,
  8. required List<List<Widget>> rows,
})

Implementation

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