redo method

bool redo()

Executes redo of the last undone action

Implementation

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