copyWith method
VPanelStyle
copyWith({
- Color? backgroundColor,
- Color? appBarBackgroundColor,
- double? borderRadius,
- TextStyle? titleTextStyle,
override
Creates a copy of this theme extension with the given fields replaced by the non-null parameter values.
Implementation
@override
VPanelStyle copyWith({
Color? backgroundColor,
Color? appBarBackgroundColor,
double? borderRadius,
TextStyle? titleTextStyle,
}) =>
VPanelStyle(
backgroundColor: backgroundColor ?? this.backgroundColor,
appBarBackgroundColor:
appBarBackgroundColor ?? this.appBarBackgroundColor,
titleTextStyle: titleTextStyle ?? this.titleTextStyle,
borderRadius: borderRadius ?? this.borderRadius);