undo method
Undo the last operation.
Implementation
@override
void undo() {
if (!canUndo) return;
super.undo();
_refreshReferences();
scheduleAutoSave();
}
Undo the last operation.
@override
void undo() {
if (!canUndo) return;
super.undo();
_refreshReferences();
scheduleAutoSave();
}