acceptGesture method

  1. @override
void acceptGesture(
  1. int pointer
)
override

Called when this member wins the arena for the given pointer id.

Implementation

@override
void acceptGesture(int pointer) {
  super.acceptGesture(pointer);

  // Calls the likecycle callback function that is called when ended.
  if (isFocusActive && --tapCount == 1) {
    focusEnd();
  }
}