isCloseAffordance property
bool?
get
isCloseAffordance
A hint for modal dialogs that the item should be triggered when the user cancels the dialog (e.g. by pressing the ESC key).
Note: this option is ignored for non-modal messages.
Implementation
_i2.bool? get isCloseAffordance => _i5.getProperty(
this,
'isCloseAffordance',
);
set
isCloseAffordance
(bool? value)
Implementation
set isCloseAffordance(_i2.bool? value) {
_i5.setProperty(
this,
'isCloseAffordance',
value ?? _i6.undefined,
);
}