IndexedSemantics constructor Null safety
Creates a widget that annotated the first child semantics node with an index.
index must not be null.
Implementation
const IndexedSemantics({
super.key,
required this.index,
super.child,
}) : assert(index != null);