FittedTable<T> constructor

FittedTable<T>({
  1. Key? key,
  2. required int visibleNumberOfColumns,
  3. required List<FittedColumn> columns,
  4. void onTapRow(
    1. T value
    )?,
  5. required List<FittedTableRow> rows,
  6. bool shrinkWrap = false,
  7. double space = 12,
})

Implementation

FittedTable({
  super.key,
  required this.visibleNumberOfColumns,
  required this.columns,
  this.onTapRow,
  required List<FittedTableRow> rows,
  this.shrinkWrap = false,
  this.space = 12,
}) : child = _FittedTableWithRowList<T>(
        rows: rows,
      );