AppDropDownNew constructor

AppDropDownNew({
  1. Key? key,
  2. double? width,
  3. required String selectedValue,
  4. int? selectedId,
  5. RxList<DropDownResponse>? listItems,
  6. required String hintText,
  7. required VoidCallback onShowDialogBox,
  8. required VoidCallback onClearPressed,
})

Implementation

AppDropDownNew({
  super.key,
  this.width,
  required this.selectedValue,
  this.selectedId,
  this.listItems,
  required this.hintText,
  required this.onShowDialogBox,
  required this.onClearPressed,
});