TR constructor
const
TR({
- required List<
TD> column, - Color? color,
- BoxDecoration? decoration,
- TRStyle style = TRStyle.normal,
Creates a normal table row with required cells.
The column must contain TD widgets for each cell.
Optional color and decoration allow custom background and borders.
Defaults to TRStyle.normal for standard data rows.
Implementation
const TR(
{required this.column,
this.color,
this.decoration,
this.style = TRStyle.normal});