alterPath method

void alterPath(
  1. Offset point
)

Adds [point[ to active path.

Implementation

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

  _activePath?.add(point);

  notifyListeners();
}