handleMove method

void handleMove()

Handles the move event.

This method calls the onMove callback and then calls handleUpdateUI.

Implementation

void handleMove() {
  onMove?.call();
  handleUpdateUI();
}