excluding property

bool excluding

Whether this render object is excluded from the semantic tree.

Implementation

bool get excluding => _excluding;
void excluding=(bool value)

Implementation

set excluding(bool value) {
  if (value == _excluding) {
    return;
  }
  _excluding = value;
  markNeedsSemanticsUpdate();
}