copyWith method
TTableRowCardTheme
copyWith({
- EdgeInsets? margin,
- EdgeInsets? padding,
- double? elevation,
- BorderRadius? borderRadius,
- WidgetStateProperty<
Color> ? backgroundColor, - WidgetStateProperty<
Border> ? border, - TextStyle? contentTextStyle,
Implementation
TTableRowCardTheme copyWith({
EdgeInsets? margin,
EdgeInsets? padding,
double? elevation,
BorderRadius? borderRadius,
WidgetStateProperty<Color>? backgroundColor,
WidgetStateProperty<Border>? border,
TextStyle? contentTextStyle,
}) {
return TTableRowCardTheme(
margin: margin ?? this.margin,
padding: padding ?? this.padding,
elevation: elevation ?? this.elevation,
borderRadius: borderRadius ?? this.borderRadius,
backgroundColor: backgroundColor ?? this.backgroundColor,
border: border ?? this.border,
contentTextStyle: contentTextStyle ?? this.contentTextStyle,
);
}