CheckboxPickerDialog<T> constructor

CheckboxPickerDialog<T>({
  1. String? title,
  2. required List<T> items,
  3. required List<T>? selectedItems,
  4. Transformer<T>? transformer,
  5. Color? headerColor,
  6. Color? headerTextColor,
  7. Color? backgroundColor,
  8. Color? buttonTextColor,
  9. double? maxLongSide,
  10. double? maxShortSide,
  11. String? confirmText,
  12. bool cancelButtonVisible = true,
  13. String? cancelText,
  14. ValueChanged<List<T>>? onSelectionChanged,
  15. 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});