SelectionPicker constructor

SelectionPicker({
  1. Key? key,
  2. required List<String> items,
  3. required List<String> values,
  4. required String initialValue,
  5. required ValueChanged<String> onChanged,
  6. List<Icon>? icons,
})

Implementation

SelectionPicker({
  Key? key,
  required this.items,
  required this.values,
  required this.initialValue,
  required this.onChanged,
  this.icons,
}) : super(key: key);