quadraticCurveTo method
Creates a quadratic curve from currentPoint with cpX and cpY as control point and updates currentPoint to x and y.
Implementation
@override
Shape quadraticCurveTo(double aCPx, double aCPy, double aX, double aY) {
super.quadraticCurveTo(aCPx, aCPy, aX, aY);
return this;
}