undo method

bool undo()

Restores the most recent previous edit state.

Implementation

bool undo() {
  return _history.undo(
    captureState: _captureEditState,
    restoreState: _restoreEditState,
  );
}