TR.footer constructor

const TR.footer({
  1. required List<TD> column,
  2. Color? color,
  3. BoxDecoration? decoration,
})

Factory for footer rows, often for totals or summaries.

Uses TRStyle.footer for visual distinction, with column cells. Efficient for static content in SliverScreen without state overhead.

Implementation

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