copyWith method
UIAnimatedFlipCardStyle
copyWith({
- double? width,
- double? height,
- BorderRadius? borderRadius,
- List<
BoxShadow> ? shadows, - Color? frontColor,
- Color? backColor,
- Border? border,
- Duration? flipDuration,
- Curve? flipCurve,
- EdgeInsets? padding,
- BoxDecoration? frontDecoration,
- BoxDecoration? backDecoration,
- UIFlipDirection? direction,
- bool? fill,
Implementation
UIAnimatedFlipCardStyle copyWith({
double? width,
double? height,
BorderRadius? borderRadius,
List<BoxShadow>? shadows,
Color? frontColor,
Color? backColor,
Border? border,
Duration? flipDuration,
Curve? flipCurve,
EdgeInsets? padding,
BoxDecoration? frontDecoration,
BoxDecoration? backDecoration,
UIFlipDirection? direction,
bool? fill,
}) {
return UIAnimatedFlipCardStyle(
width: width ?? this.width,
height: height ?? this.height,
borderRadius: borderRadius ?? this.borderRadius,
shadows: shadows ?? this.shadows,
frontColor: frontColor ?? this.frontColor,
backColor: backColor ?? this.backColor,
border: border ?? this.border,
flipDuration: flipDuration ?? this.flipDuration,
flipCurve: flipCurve ?? this.flipCurve,
padding: padding ?? this.padding,
frontDecoration: frontDecoration ?? this.frontDecoration,
backDecoration: backDecoration ?? this.backDecoration,
direction: direction ?? this.direction,
fill: fill ?? this.fill,
);
}