RenderIndexedSemantics constructor Null safety
Creates a render object that annotates the child semantics with an index.
Implementation
RenderIndexedSemantics({
RenderBox? child,
required int index,
}) : assert(index != null),
_index = index,
super(child);