acceptGesture method
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();
}
}