reset method

  1. @override
void reset()
override

Resets the recognizer to GestureRecognizerState.ready.

Implementation

@override
void reset() {
  _timer?.cancel();
  _timer = null;
  _longPressAccepted = false;
  _downGlobal = null;
  _downLocal = null;
  super.reset();
}