DropdownDialog<T> constructor

const DropdownDialog<T>({
  1. Key? key,
  2. required List<DropdownMenuItem<T>> items,
  3. Widget? hint,
  4. bool isCaseSensitiveSearch = false,
  5. dynamic closeButton,
  6. TextInputType? keyboardType,
  7. Function? searchFn,
  8. bool? multipleSelection,
  9. List<int>? selectedItems,
  10. Function? displayItem,
  11. dynamic doneButton,
  12. Function? validator,
  13. bool? dialogBox,
  14. PointerThisPlease<bool>? displayMenu,
  15. BoxConstraints? menuConstraints,
  16. Function? callOnPop,
  17. Color? menuBackgroundColor,
})

Implementation

const DropdownDialog({
  Key? key,
  required this.items,
  this.hint,
  this.isCaseSensitiveSearch = false,
  this.closeButton,
  this.keyboardType,
  this.searchFn,
  this.multipleSelection,
  this.selectedItems,
  this.displayItem,
  this.doneButton,
  this.validator,
  this.dialogBox,
  this.displayMenu,
  this.menuConstraints,
  this.callOnPop,
  this.menuBackgroundColor,
}) : super(key: key);