KinDropdownMenu<T> constructor
const
KinDropdownMenu<T> ({
- Key? key,
- T? value,
- required List<
KinDropdownItem< items,T> > - required ValueChanged<
T> onChanged, - String? hint,
- String? label,
- bool enabled = true,
- Widget itemBuilder()?,
Implementation
const KinDropdownMenu({
super.key,
this.value,
required this.items,
required this.onChanged,
this.hint,
this.label,
this.enabled = true,
this.itemBuilder,
});