asPassword property

bool asPassword

Implementation

bool get asPassword {
  obscureText = true;
  maxLines = 1;

  return true;
}
void asPassword=(bool value)

Implementation

set asPassword(bool value) {
  obscureText = value;
  maxLines = 1;
}