historyIndex property

int historyIndex

Implementation

int get historyIndex => _historyIndex;
void historyIndex=(int newHistoryIndex)

Implementation

set historyIndex(int newHistoryIndex) {
  assert(0 <= newHistoryIndex && newHistoryIndex < _locations.length);
  _historyIndex = newHistoryIndex;
}