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