CupertinoMultiSelection<T> constructor

const CupertinoMultiSelection<T>({
  1. required List<SelectionItem<T>> children,
  2. required Set<T?> selected,
  3. ValueChanged<Set<T?>>? onChanged,
  4. Widget? header,
  5. Widget? footer,
  6. CupertinoListSectionType? headerType,
  7. CupertinoListSectionType? footerType,
  8. WidgetSelectionLocation checkMarkLocation = WidgetSelectionLocation.trailing,
  9. Color? checkMarkColor,
  10. Color? backgroundColor,
  11. Color? separatorColor,
  12. Key? key,
})

Implementation

const CupertinoMultiSelection({
  required this.children,
  required this.selected,
  this.onChanged,
  this.header,
  this.footer,
  this.headerType,
  this.footerType,
  this.checkMarkLocation = WidgetSelectionLocation.trailing,
  this.checkMarkColor,
  this.backgroundColor,
  this.separatorColor,
  super.key});