NiceTable constructor

const NiceTable({
  1. Key? key,
  2. required List<NiceTableColumn> columns,
  3. required List<List<String>> rows,
  4. bool striped = true,
  5. bool bordered = false,
  6. bool compact = false,
  7. String? caption,
  8. void onRowTap(
    1. int rowIndex
    )?,
})

Implementation

const NiceTable({
  super.key,
  required this.columns,
  required this.rows,
  this.striped = true,
  this.bordered = false,
  this.compact = false,
  this.caption,
  this.onRowTap,
});