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