alterPath method
Adds [point[ to active path.
Implementation
void alterPath(Offset point) {
assert(hasActivePath);
_activePath?.add(point);
notifyListeners();
}
Adds [point[ to active path.
void alterPath(Offset point) {
assert(hasActivePath);
_activePath?.add(point);
notifyListeners();
}