copyWith method

TTableRowHeaderTheme copyWith({
  1. EdgeInsets? padding,
  2. Decoration? decoration,
  3. TextStyle? textStyle,
})

Implementation

TTableRowHeaderTheme copyWith({
  EdgeInsets? padding,
  Decoration? decoration,
  TextStyle? textStyle,
}) {
  return TTableRowHeaderTheme(
    padding: padding ?? this.padding,
    decoration: decoration ?? this.decoration,
    textStyle: textStyle ?? this.textStyle,
  );
}