ArcaneToggleGroup.multiple constructor

const ArcaneToggleGroup.multiple({
  1. required List<ToggleGroupItem> items,
  2. Set<String>? values,
  3. void onMultiChanged(
    1. Set<String>
    )?,
  4. ToggleGroupVariant variant = ToggleGroupVariant.defaultVariant,
  5. ToggleGroupSize size = ToggleGroupSize.md,
  6. bool disabled = false,
  7. Key? key,
})

Implementation

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