copyWith method

UIAnimatedFlipCardStyle copyWith({
  1. double? width,
  2. double? height,
  3. BorderRadius? borderRadius,
  4. List<BoxShadow>? shadows,
  5. Color? frontColor,
  6. Color? backColor,
  7. Border? border,
  8. Duration? flipDuration,
  9. Curve? flipCurve,
  10. EdgeInsets? padding,
  11. BoxDecoration? frontDecoration,
  12. BoxDecoration? backDecoration,
  13. UIFlipDirection? direction,
  14. 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,
  );
}