index property

int index

Index within the list of candidates that is currently selected.

Implementation

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

Implementation

set index(int value) {
  _index = value;
  _computeCurrent();
}