undo method
Executes undo of the last action
Implementation
bool undo() {
final result = _undoRedoManager.undo(this);
if (result) {
syncPendingFontWithCursor();
registry.dispatchUndo(this);
}
return result;
}
Executes undo of the last action
bool undo() {
final result = _undoRedoManager.undo(this);
if (result) {
syncPendingFontWithCursor();
registry.dispatchUndo(this);
}
return result;
}