password property

bool? get password

Controls if a password input is shown. Password input hides the typed text.

Implementation

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

Implementation

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