totalCandidates property

int? get totalCandidates

The total number of candidates for the candidate window.

Implementation

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

Implementation

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