visible property

bool get visible

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

Implementation

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

Implementation

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