focusEnd method

  1. @override
void focusEnd()
override

Invokes the onFocusEnd callback when a focus gesture is finished. Therefore, this method should be called whena consecutive events ended.

Implementation

@override
void focusEnd() {
  super.focusEnd();
  onDoubleTapEnd?.call();
}