undo method

void undo()

Undoes the last action.

Implementation

void undo() {
  _documentController.undo();
  _editorWidgetState?.rebuild();
}