copyWith method
Implementation
TR copyWith({
BoxDecoration? decoration,
Color? color,
List<TD>? column,
TRStyle? style,
}) =>
TR(
column: column ?? this.column,
color: color ?? this.color,
decoration: decoration ?? this.decoration,
style: style ?? this.style,
);