hold method

void hold()

Defines to keep the tracking state even if the pointer currently being tracked is not detected.

Implementation

void hold() {
  assert(_currentPointer != null);
  GestureBinding.instance.gestureArena.hold(_currentPointer!);

  _holdedPointerList.add(_currentPointer!);
}