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