Table constructor

const Table({
  1. required List<TableRow> rows,
  2. TableSize defaultColumnWidth = const FlexTableSize(),
  3. TableSize defaultRowHeight = const IntrinsicTableSize(),
  4. Map<int, TableSize>? columnWidths,
  5. Map<int, TableSize>? rowHeights,
  6. Clip clipBehavior = Clip.hardEdge,
  7. TableTheme? theme,
  8. FrozenTableData? frozenCells,
  9. double? horizontalOffset,
  10. double? verticalOffset,
  11. Size? viewportSize,
})

Implementation

const Table({
  required this.rows,
  this.defaultColumnWidth = const FlexTableSize(),
  this.defaultRowHeight = const IntrinsicTableSize(),
  this.columnWidths,
  this.rowHeights,
  this.clipBehavior = Clip.hardEdge,
  this.theme,
  this.frozenCells,
  this.horizontalOffset,
  this.verticalOffset,
  this.viewportSize,
});