DropdownDialog<T> constructor
const
DropdownDialog<T> ({
- Key? key,
- required List<
DropdownMenuItem< items,T> > - Widget? hint,
- bool isCaseSensitiveSearch = false,
- dynamic closeButton,
- required TextInputType keyboardType,
- Function? searchFn,
- required bool multipleSelection,
- required List<
int> selectedItems, - Function? displayItem,
- dynamic doneButton,
- Function? validator,
- required bool dialogBox,
- required PointerThisPlease<
bool> displayMenu, - required Function callOnPop,
Implementation
const DropdownDialog({
Key? key,
required this.items,
this.hint,
this.isCaseSensitiveSearch = false,
this.closeButton,
required this.keyboardType,
this.searchFn,
required this.multipleSelection,
required this.selectedItems,
this.displayItem,
this.doneButton,
this.validator,
required this.dialogBox,
required this.displayMenu,
required this.menuConstraints,
required this.callOnPop,
required this.menuBackgroundColor,
}) : super(key: key);