copyWith method
TTableRowHeaderTheme
copyWith({
- EdgeInsets? padding,
- Decoration? decoration,
- 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,
);
}