candidates property

List of candidates to show in the candidate window

Implementation

List<SetCandidatesParametersCandidates> get candidates =>
    _wrapped.candidates.toDart
        .cast<$js.SetCandidatesParametersCandidates>()
        .map((e) => SetCandidatesParametersCandidates.fromJS(e))
        .toList();

Implementation

set candidates(List<SetCandidatesParametersCandidates> v) {
  _wrapped.candidates = v.toJSArray((e) => e.toJS);
}