IndexedSemantics constructor

const IndexedSemantics(
  1. {Key? key,
  2. required int index,
  3. Widget? child}
)

Creates a widget that annotated the first child semantics node with an index.

Implementation

const IndexedSemantics({
  super.key,
  required this.index,
  super.child,
});