ignoringSemantics property
Whether the semantics of this render object is ignored when compiling the semantics tree.
If null, defaults to value of ignoring.
See SemanticsNode for additional information about the semantics tree.
Implementation
bool get ignoringSemantics => _ignoringSemantics;
Implementation
set ignoringSemantics(bool value) {
if (value == _ignoringSemantics)
return;
final bool oldEffectiveValue = _effectiveIgnoringSemantics;
_ignoringSemantics = value;
if (oldEffectiveValue != _effectiveIgnoringSemantics)
markNeedsSemanticsUpdate();
}