undo method
Restores the previous edit state.
Implementation
bool undo() {
final changed = _model.undo();
if (changed) {
notifyListeners();
}
return changed;
}
Restores the previous edit state.
bool undo() {
final changed = _model.undo();
if (changed) {
notifyListeners();
}
return changed;
}