enabled property

bool get enabled

Controls whether the input box is enabled (default is true).

Implementation

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

Implementation

set enabled(_i2.bool value) {
  _i5.setProperty(
    this,
    'enabled',
    value,
  );
}