TR constructor

const TR({
  1. required List<TD> column,
  2. Color? color,
  3. BoxDecoration? decoration,
  4. 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});