hidden property

bool hidden

If non-null, sets the SemanticsNode.isHidden semantic to the given value.

Implementation

bool get hidden => _hidden;
void hidden= (bool value)

Implementation

set hidden(bool value) {
  if (hidden == value)
    return;
  _hidden = value;
  markNeedsSemanticsUpdate();
}