startLongTappable method

void startLongTappable()

Implementation

void startLongTappable() {
  onRejectable(currentPointerOffset);

  _longTappableTimer?.cancel();
  _longTappableTimer = Timer(longTappableDuration!, () {
    onContinueStart();
    continueLongTap();
  });
}