secondarySelections property
Iterable<UserSelectionModel>
get
secondarySelections
Implementation
Iterable<UserSelectionModel> get secondarySelections sync* {
var index = 0;
for (final selection in selections) {
if (index == _primaryIndex) {
continue;
}
yield selection;
index++;
}
}