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