moveTo method

  1. @override
Shape moveTo(
  1. double x,
  2. double y
)
override

Move the currentPoint to x, y.

Implementation

@override
Shape moveTo(double x, double y) {
  super.moveTo(x, y);
  return this;
}