TR constructor

const TR({
  1. required List<TD> column,
  2. Color? color,
  3. BoxDecoration? decoration,
  4. TRStyle style = TRStyle.normal,
})

Implementation

const TR(
    {required this.column,
    this.color,
    this.decoration,
    this.style = TRStyle.normal});