ArcaneToggleButton constructor

const ArcaneToggleButton({
  1. required bool value,
  2. void onChanged(
    1. bool value
    )?,
  3. String? label,
  4. Component? icon,
  5. CycleButtonSize size = CycleButtonSize.medium,
  6. bool disabled = false,
  7. String? id,
  8. Map<String, String>? attributes,
  9. Key? key,
})

Implementation

const ArcaneToggleButton({
  required this.value,
  this.onChanged,
  this.label,
  this.icon,
  this.size = CycleButtonSize.medium,
  this.disabled = false,
  this.id,
  this.attributes,
  super.key,
});