AppDropDown<T> constructor

const AppDropDown<T>({
  1. Key? key,
  2. required T? selectedValue,
  3. required List<DropdownMenuItem<T>>? items,
  4. required ValueChanged<T?>? onChanged,
  5. String? hintText,
  6. double? width,
})

Implementation

const AppDropDown({
  super.key,
  required this.selectedValue,
  required this.items,
  required this.onChanged,
  this.hintText,
  this.width,
});