TR.header constructor

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

Factory for header rows, typically used for column titles.

Applies TRStyle.header automatically, with column for header cells. Integrates well with ArcaneTheme for consistent muted styling.

Implementation

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