scrollIndex property

int scrollIndex

The index of the first visible scrollable child that contributes to semantics.

Implementation

int get scrollIndex => _scrollIndex;
void scrollIndex= (int value)

Implementation

set scrollIndex(int value) {
  if (value == scrollIndex)
    return;
  _scrollIndex = value;
  _hasBeenAnnotated = true;
}