index property

int index

The index used to annotated child semantics.

Implementation

int get index => _index;
void index= (int value)

Implementation

set index(int value) {
  if (value == index)
    return;
  _index = value;
  markNeedsSemanticsUpdate();
}