moveTo method

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

Implementation

moveTo(double x, double y) {
  currentPath = Path(null);
  subPaths.add(currentPath);
  currentPath.moveTo(x, y);
  return this;
}