index property

int get index

Index within the list of candidates that is currently selected.

Implementation

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

Implementation

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