reject method
void
reject()
Rejects the gesture and starts reversing the animation.
Implementation
void reject() {
if (_animation == null) return;
_animation?.reverse();
}
Rejects the gesture and starts reversing the animation.
void reject() {
if (_animation == null) return;
_animation?.reverse();
}