TableRow constructor

const TableRow({
  1. String? id,
  2. required List<Component> children,
  3. TableRowCellAlignment? alignment,
  4. String? classes,
  5. VoidCallback? onClick,
})

Creates a TableRow.

Implementation

const TableRow({
  this.id,
  required this.children,
  this.alignment,
  this.classes,
  this.onClick,
});