handleRedo method

void handleRedo()

Handles the redo action.

This method calls the onRedo callback and then calls handleUpdateUI.

Implementation

void handleRedo() {
  onRedo?.call();
  handleUpdateUI();
}