focus property

bool? get focus

If true, then the element will be focused.

Implementation

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

Implementation

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