handleDoubleTap method

void handleDoubleTap()

Handles the double tap event.

This method calls the onDoubleTap callback and then calls handleUpdateUI.

Implementation

void handleDoubleTap() {
  onDoubleTap?.call();
  handleUpdateUI();
}