obscured property Null safety
If non-null, sets the SemanticsConfiguration.isObscured semantic to the given value.
Implementation
bool? get obscured => _obscured;
Implementation
set obscured(bool? value) {
if (obscured == value)
return;
_obscured = value;
markNeedsSemanticsUpdate();
}