handleEditingComplete method

void handleEditingComplete()

Handles the editing complete event.

This method calls the onEditingComplete callback and then calls handleUpdateUI.

Implementation

void handleEditingComplete() {
  onEditingComplete?.call();
  handleUpdateUI();
}