copyWith method

VectorPathCommandCubicBezierCurve copyWith({
  1. Point? startControlPoint,
  2. Point? endControlPoint,
  3. Point? endPoint,
})

Implementation

VectorPathCommandCubicBezierCurve copyWith({
  Point? startControlPoint,
  Point? endControlPoint,
  Point? endPoint,
}) => VectorPathCommandCubicBezierCurve(
  startControlPoint: startControlPoint ?? this.startControlPoint,
  endControlPoint: endControlPoint ?? this.endControlPoint,
  endPoint: endPoint ?? this.endPoint,
);