reject method

void reject()

Rejects the gesture and starts reversing the animation.

Implementation

void reject() {
  assert(_animation != null);
  _animation?.reverse();
}