lineTo method
This creates a line from the currentPath's offset to X and Y and updates the offset to X and Y.
Implementation
ShapePath lineTo(double x, double y) {
currentPath.lineTo(x, y);
return this;
}
This creates a line from the currentPath's offset to X and Y and updates the offset to X and Y.
ShapePath lineTo(double x, double y) {
currentPath.lineTo(x, y);
return this;
}