CyberCheckbox constructor

const CyberCheckbox({
  1. Key? key,
  2. dynamic text,
  3. String? label,
  4. bool enabled = true,
  5. TextStyle? labelStyle,
  6. ValueChanged<bool>? onChanged,
  7. dynamic onLeaver(
    1. dynamic
    )?,
  8. Color? activeColor,
  9. Color? checkColor,
  10. double? size,
  11. dynamic isVisible = true,
})

Implementation

const CyberCheckbox({
  super.key,
  this.text,
  this.label,
  this.enabled = true,
  this.labelStyle,
  this.onChanged,
  this.onLeaver,
  this.activeColor,
  this.checkColor,
  this.size,
  this.isVisible = true,
});