HMCheckBox constructor

const HMCheckBox({
  1. Key? key,
  2. String? label,
  3. bool disabled = false,
  4. bool hidden = false,
  5. HMRadius? radius,
  6. Color? borderColor,
  7. HMCheckBoxSize? size,
  8. required bool value,
  9. Color? color,
  10. required void onChange(
    1. bool
    ),
})

Implementation

const HMCheckBox({
  super.key,
  this.label,
  this.disabled = false,
  this.hidden = false,
  this.radius,
  this.borderColor,
  this.size,
  required this.value,
  this.color,
  required this.onChange,
});