AppDropDown<T> constructor
const
AppDropDown<T> ({
- Key? key,
- required T? selectedValue,
- required List<
DropdownMenuItem< ? items,T> > - required ValueChanged<
T?> ? onChanged, - String? hintText,
- double? width,
Implementation
const AppDropDown({
super.key,
required this.selectedValue,
required this.items,
required this.onChanged,
this.hintText,
this.width,
});