start method

  1. @override
void start(
  1. Point<int> clickPoint,
  2. VoidCallback onUpdate
)
override

Starts the animation forward from the beginning.

Implementation

@override
void start(Point<int> clickPoint, VoidCallback onUpdate) {
  super.start(clickPoint, onUpdate);
  _particles.clear();
}