transactionToRedo property
Transaction?
get
transactionToRedo
This read-only property returns the Transaction in the #history to be redone next. The value may be null if the UndoManager is not ready to perform a redo.
Implementation
_i3.Transaction? get transactionToRedo => _i4.getProperty(
this,
'transactionToRedo',
);
set
transactionToRedo
(Transaction? value)
Implementation
set transactionToRedo(_i3.Transaction? value) {
_i4.setProperty(
this,
'transactionToRedo',
value ?? _i5.undefined,
);
}