SubZeroCheckboxGroup<T> constructor

const SubZeroCheckboxGroup<T>({
  1. Key? key,
  2. required List<SubZeroMultiselectOption<T>> options,
  3. required List<T> selectedValues,
  4. required ValueChanged<List<T>> onChanged,
  5. double spacing = SubZeroSpacing.lg,
  6. SubZeroCheckboxSize size = SubZeroCheckboxSize.medium,
  7. bool enabled = true,
  8. bool wrap = false,
  9. double runSpacing = SubZeroSpacing.sm,
  10. Color? activeColor,
})

Implementation

const SubZeroCheckboxGroup({
  super.key,
  required this.options,
  required this.selectedValues,
  required this.onChanged,
  this.spacing = SubZeroSpacing.lg,
  this.size = SubZeroCheckboxSize.medium,
  this.enabled = true,
  this.wrap = false,
  this.runSpacing = SubZeroSpacing.sm,
  this.activeColor,
});