NeomageDropdown<T> constructor
const
NeomageDropdown<T> ({
- Key? key,
- T? value,
- required List<
NeomageDropdownItem< items,T> > - ValueChanged<
T?> ? onChanged, - String? hint,
- bool dense = false,
Implementation
const NeomageDropdown({
super.key,
this.value,
required this.items,
this.onChanged,
this.hint,
this.dense = false,
});