undo method

bool undo()

Executes undo of the last action

Implementation

bool undo() {
  final result = _undoRedoManager.undo(this);
  if (result) {
    syncPendingFontWithCursor();
    registry.dispatchUndo(this);
  }
  return result;
}