scrollIndex property Null safety
The index of the first visible scrollable child that contributes to semantics.
Implementation
int? get scrollIndex => _scrollIndex;Implementation
set scrollIndex(int? value) {
  if (value == scrollIndex) {
    return;
  }
  _scrollIndex = value;
  _hasBeenAnnotated = true;
}