ignoreFocusOut property

bool? get ignoreFocusOut

Set to true to keep the input box open when focus moves to another part of the editor or to another window. This setting is ignored on iPad and is always false.

Implementation

_i2.bool? get ignoreFocusOut => _i5.getProperty(
      this,
      'ignoreFocusOut',
    );
set ignoreFocusOut (bool? value)

Implementation

set ignoreFocusOut(_i2.bool? value) {
  _i5.setProperty(
    this,
    'ignoreFocusOut',
    value ?? _i6.undefined,
  );
}