focusStart method

  1. @override
void focusStart()
override

Invokes the onFocusStart callback when a focus gesture is initiated. Therefore, this method should be called when consecutive events started.

Implementation

@override
void focusStart() {
  super.focusStart();
  onDoubleTapStart?.call();
}