ArcaneToggleGroup.multiple constructor

const ArcaneToggleGroup.multiple({
  1. String? id,
  2. required List<ToggleGroupItem> items,
  3. Set<String>? values,
  4. void onMultiChanged(
    1. Set<String>
    )?,
  5. ArcaneInteraction? onChangeAction,
  6. ToggleGroupVariant variant = ToggleGroupVariant.defaultVariant,
  7. ToggleGroupSize size = ToggleGroupSize.md,
  8. bool disabled = false,
  9. ArcaneStyleData? styles,
  10. ArcaneDecoration? decoration,
  11. Key? key,
})

Implementation

const ArcaneToggleGroup.multiple({
  this.id,
  required this.items,
  this.values,
  this.onMultiChanged,
  this.onChangeAction,
  this.variant = ToggleGroupVariant.defaultVariant,
  this.size = ToggleGroupSize.md,
  this.disabled = false,
  this.styles,
  this.decoration,
  super.key,
})  : type = ToggleGroupType.multiple,
      value = null,
      onChanged = null;