moveTo method

Path moveTo(
  1. double x,
  2. double y
)

Move the currentPoint to x, y.

Implementation

Path moveTo(double x, double y) {
  currentPoint.setValues(x, y);
  return this;
}