excluding property
Whether this render object is excluded from the semantic tree.
Implementation
bool get excluding => _excluding;
Implementation
set excluding(bool value) {
assert(value != null);
if (value == _excluding)
return;
_excluding = value;
markNeedsSemanticsUpdate();
}