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) {
  if (focusTiming == TouchRippleFocusTiming.consecutive) {
    focusStart();
  }

  // Need to checks about a consecutive behavior first.
  checkConsecutive(pointer);
}