reject method

void reject()

Rejects the gesture and starts reversing the animation.

Implementation

void reject() {
  if (_animation == null) return;
  _animation?.reverse();
}