undo method

void undo()

Undoes the last committed change.

Implementation

void undo() {
  _historySessionSnapshot = null;
  _bloc.add(UndoEvent());
}