selectedValues property

List<T> get selectedValues

Convenience — the T values of the currently selected items.

Implementation

List<T> get selectedValues => selectedItems.map((i) => i.value).toList();