debugSemantics property

SemanticsNode? get debugSemantics

The semantics of this render object.

Exposed only for testing and debugging. To learn about the semantics of render objects in production, obtain a SemanticsHandle from PipelineOwner.ensureSemantics.

Only valid in debug and profile mode. In release builds, always returns null.

Implementation

SemanticsNode? get debugSemantics {
  // If _semantics.built is not true, the semantics node is an old cache and
  // is not on the semantics tree.
  if (!kReleaseMode && _semantics.built) {
    return _semantics.cachedSemanticsNode;
  }
  return null;
}