currentCandidateIndex property

int? get currentCandidateIndex

The index of the current chosen candidate out of total candidates.

Implementation

int? get currentCandidateIndex => _wrapped.currentCandidateIndex;
set currentCandidateIndex (int? v)

Implementation

set currentCandidateIndex(int? v) {
  _wrapped.currentCandidateIndex = v;
}