MultiSelectBottomSheet<T> constructor
MultiSelectBottomSheet<T> ({
- required List<
MultiSelectItem< items,T> > - required List<
T> initialValue, - Widget? title,
- void onSelectionChanged(
- List<
T>
- List<
- void onConfirm(
- List<
T>
- List<
- MultiSelectListType? listType,
- Text? cancelText,
- Text? confirmText,
- bool searchable = false,
- Color? selectedColor,
- double? initialChildSize,
- double? minChildSize,
- double? maxChildSize,
- Color? colorator(
- T
- Color? unselectedColor,
- Icon? searchIcon,
- Icon? closeSearchIcon,
- TextStyle? itemsTextStyle,
- TextStyle? searchTextStyle,
- String? searchHint,
- TextStyle? searchHintStyle,
- TextStyle? selectedItemsTextStyle,
- bool separateSelectedItems = false,
- Color? checkColor,
Implementation
MultiSelectBottomSheet({
required this.items,
required this.initialValue,
this.title,
this.onSelectionChanged,
this.onConfirm,
this.listType,
this.cancelText,
this.confirmText,
this.searchable = false,
this.selectedColor,
this.initialChildSize,
this.minChildSize,
this.maxChildSize,
this.colorator,
this.unselectedColor,
this.searchIcon,
this.closeSearchIcon,
this.itemsTextStyle,
this.searchTextStyle,
this.searchHint,
this.searchHintStyle,
this.selectedItemsTextStyle,
this.separateSelectedItems = false,
this.checkColor,
});