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