listIndex property

int get listIndex

Implementation

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

Implementation

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