copyWith method

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

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,
    );