moveTo method

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

Starts a new sub-path at the given point.

Implementation

void moveTo(double x, double y) {
  _path.moveTo(x, y);
  _points.add(Pointinfo(true, x, y));
  _dashedPaths.clear();
}