undoOnEscape property
bool?
get
undoOnEscape
Make escape behave like undo. (ctrl-Z) Pressing escape reverts the value to the value before focus.
@default true
Implementation
_i2.bool? get undoOnEscape => _i4.getProperty(
this,
'undoOnEscape',
);
set
undoOnEscape
(bool? value)
Implementation
set undoOnEscape(_i2.bool? value) {
_i4.setProperty(
this,
'undoOnEscape',
value ?? _i6.undefined,
);
}