listIndex property

int listIndex

Implementation

int get listIndex => _listIndex;
void listIndex=(int value)

Implementation

set listIndex(int value) {
  if (_listIndex == value) {
    return;
  }
  _listIndex = value;
  markNeedsLayout();
}