lineTo method

dynamic lineTo(
  1. num x,
  2. num y
)

Implementation

lineTo(num x, num y) {
  currentPath.lineTo(x, y);
  return this;
}