debugNeedsSemanticsUpdate property
Whether the semantics of this render object is dirty and await the update.
Always returns false in release mode.
Implementation
bool get debugNeedsSemanticsUpdate {
  if (kReleaseMode) {
    return false;
  }
  return _semantics.parentDataDirty;
}