candidates property
Render objects that are candidates to be selected.
Tools may wish to iterate through the list of candidates.
Implementation
List<RenderObject> get candidates => _candidates;
Implementation
set candidates(List<RenderObject> value) {
_candidates = value;
_index = 0;
_computeCurrent();
}