redo method
void
redo()
Redo Previous Undo
Implementation
void redo() {
if (!canRedo) return;
final change = _redo.removeFirst();
super.set(change.value, force: true);
_undo.addLast(change);
}
Redo Previous Undo
void redo() {
if (!canRedo) return;
final change = _redo.removeFirst();
super.set(change.value, force: true);
_undo.addLast(change);
}