SubZeroCheckboxGroup<T> constructor
const
SubZeroCheckboxGroup<T> ({
- Key? key,
- required List<
SubZeroMultiselectOption< options,T> > - required List<
T> selectedValues, - required ValueChanged<
List< onChanged,T> > - double spacing = SubZeroSpacing.lg,
- SubZeroCheckboxSize size = SubZeroCheckboxSize.medium,
- bool enabled = true,
- bool wrap = false,
- double runSpacing = SubZeroSpacing.sm,
- 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,
});