reset method
Resets the recognizer to GestureRecognizerState.ready.
Implementation
@override
void reset() {
_timer?.cancel();
_timer = null;
_longPressAccepted = false;
_downGlobal = null;
_downLocal = null;
super.reset();
}
Resets the recognizer to GestureRecognizerState.ready.
@override
void reset() {
_timer?.cancel();
_timer = null;
_longPressAccepted = false;
_downGlobal = null;
_downLocal = null;
super.reset();
}