handleDrawingDone method

void handleDrawingDone()

Handles the drawing done event.

This method calls the onDrawingDone callback and then calls handleUpdateUI.

Implementation

void handleDrawingDone() {
  onDrawingDone?.call();
  handleUpdateUI();
}