CheckboxPickerDialog<T> constructor
CheckboxPickerDialog<T> ({
- String? title,
- required List<
T> items, - required List<
T> ? selectedItems, - Transformer<
T> ? transformer, - Color? headerColor,
- Color? headerTextColor,
- Color? backgroundColor,
- Color? buttonTextColor,
- double? maxLongSide,
- double? maxShortSide,
- String? confirmText,
- bool cancelButtonVisible = true,
- String? cancelText,
- ValueChanged<
List< ? onSelectionChanged,T> > - SelectAllConfig? selectAllConfig,
Implementation
CheckboxPickerDialog(
{this.title,
required this.items,
required this.selectedItems,
this.transformer,
this.headerColor,
this.headerTextColor,
this.backgroundColor,
this.buttonTextColor,
this.maxLongSide,
this.maxShortSide,
this.confirmText,
this.cancelButtonVisible = true,
this.cancelText,
this.onSelectionChanged,
this.selectAllConfig});