index property

int? index

The index of the item in the list. Includes the lead and tail of the list.

Implementation

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

Implementation

set index(int? index) {
  if (_index != index) {
    _index = index;
    Future.microtask(notifyListeners);
  }
}