CuReSwitch constructor

const CuReSwitch({
  1. Key? key,
  2. bool? checked,
  3. Function? onChanged,
  4. Color? color,
  5. String? label,
  6. bool? disabled,
  7. bool? spaceBetween,
  8. Alignment? alignment,
})

Implementation

const CuReSwitch({
  super.key,
  this.checked,
  this.onChanged,
  this.color,
  this.label,
  this.disabled,
  this.spaceBetween,
  this.alignment,
});