selectedValue property

String selectedValue

Gets or sets the selected value in the list.

Implementation

String get selectedValue =>
    _helper.selectedValues.isEmpty ? '' : _helper.selectedValues[0];
void selectedValue=(String value)

Implementation

set selectedValue(String value) {
  _helper.selectedValues = <String>[value];
}