alterPath method

void alterPath(
  1. Offset point
)

Implementation

void alterPath(Offset point) {
  assert(hasActivePath);

  _activePath!.add(point);
  pageState.update();
}