WiredCombo constructor

const WiredCombo({
  1. Key? key,
  2. required List<DropdownMenuItem> items,
  3. dynamic value,
  4. dynamic onChanged(
    1. dynamic
    )?,
})

Implementation

const WiredCombo({
  Key? key,
  required this.items,
  this.value,
  this.onChanged,
}) : super(key: key);