S360FDataTable constructor

const S360FDataTable({
  1. required List<S360FDataColumn> columns,
  2. required List<S360FDataRow> rows,
  3. Key? key,
  4. double headingRowHeight = 56.0,
  5. double dataRowHeight = 48.0,
  6. double horizontalMargin = 24.0,
  7. double columnSpacing = 24.0,
  8. bool showCheckboxColumn = true,
  9. bool showBottomBorder = true,
  10. double rowPadding = 2.0,
})

Implementation

const S360FDataTable({
  required this.columns,
  required this.rows,
  super.key,
  this.headingRowHeight = 56.0,
  this.dataRowHeight = 48.0,
  this.horizontalMargin = 24.0,
  this.columnSpacing = 24.0,
  this.showCheckboxColumn = true,
  this.showBottomBorder = true,
  this.rowPadding = 2.0,
});