handleTapCancel method

bool handleTapCancel(
  1. int pointerId
)

Implementation

bool handleTapCancel(int pointerId) {
  if (_checkPointerId(pointerId)) {
    _currentPointerId = null;
    return onTapCancel();
  }
  return true;
}