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