start method
Starts the animation forward from the beginning.
Implementation
void start(Point<int> clickPoint, VoidCallback onUpdate) {
reset();
triggerPoint = clickPoint;
this.onUpdate = onUpdate;
forward();
}
Starts the animation forward from the beginning.
void start(Point<int> clickPoint, VoidCallback onUpdate) {
reset();
triggerPoint = clickPoint;
this.onUpdate = onUpdate;
forward();
}