AdwComboButton constructor

const AdwComboButton({
  1. Key? key,
  2. List<String> choices = const [],
  3. required ValueSetter<int> onSelected,
  4. required int selectedIndex,
})

Implementation

const AdwComboButton({
  Key? key,
  this.choices = const [],
  required this.onSelected,
  required this.selectedIndex,
}) : super(key: key);