MultiSelectDropDown<T> constructor
const
MultiSelectDropDown<T> ({
- Key? key,
- required List<
T> items, - required String itemLabel(
- T
- dynamic onSelectionChanged(
- List<
T>
- List<
- required List<
T> selectedItem, - bool isMulti = false,
- bool centerTitle = false,
- String title = 'Search',
- AppBar? appBar,
- Widget? selectedIconWidget,
- InputDecoration? searchBarInputDecoration,
- EdgeInsets? padding,
Implementation
const MultiSelectDropDown({
super.key,
required this.items,
required this.itemLabel,
this.onSelectionChanged,
required this.selectedItem,
this.isMulti = false,
this.centerTitle = false,
this.title = 'Search',
this.appBar,
this.selectedIconWidget,
this.searchBarInputDecoration,
this.padding,
});