KinDropdownMenu<T> constructor

const KinDropdownMenu<T>({
  1. Key? key,
  2. T? value,
  3. required List<KinDropdownItem<T>> items,
  4. required ValueChanged<T> onChanged,
  5. String? hint,
  6. String? label,
  7. bool enabled = true,
  8. Widget itemBuilder(
    1. KinDropdownItem<T>
    )?,
})

Implementation

const KinDropdownMenu({
  super.key,
  this.value,
  required this.items,
  required this.onChanged,
  this.hint,
  this.label,
  this.enabled = true,
  this.itemBuilder,
});