Table constructor

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

Implementation

const Table({super.key,
  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,
});