CustomDropDown<T> constructor
const
CustomDropDown<T> ({
- IconData? icon,
- String label = '',
- List<
CustomDropItem< ? items,T> > - void onChange(
- T? newValue
- T? value,
- Key? key,
Implementation
const CustomDropDown({
this.icon,
this.label = '',
this.items,
this.onChange,
this.value,
Key? key,
}) : super(key: key);