ignoringSemantics property Null safety

bool? ignoringSemantics

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;
void ignoringSemantics=(bool? value)

Implementation

set ignoringSemantics(bool? value) {
  if (value == _ignoringSemantics) {
    return;
  }
  final bool oldEffectiveValue = _effectiveIgnoringSemantics;
  _ignoringSemantics = value;
  if (oldEffectiveValue != _effectiveIgnoringSemantics) {
    markNeedsSemanticsUpdate();
  }
}