obscureText property
Whether to hide the text being edited (e.g., for passwords).
Implementation
bool get obscureText => _obscureText;
Implementation
set obscureText(bool value) {
if (_obscureText == value) {
return;
}
_obscureText = value;
_cachedAttributedValue = null;
markNeedsSemanticsUpdate();
}