CuReCheckbox constructor

const CuReCheckbox({
  1. Key? key,
  2. bool? checked,
  3. Function? onChanged,
  4. Color? color,
  5. String? label,
  6. bool? disabled,
  7. double? size,
  8. IconData? icon,
})

Implementation

const CuReCheckbox({
  super.key,
  this.checked,
  this.onChanged,
  this.color,
  this.label,
  this.disabled,
  this.size,
  this.icon,
});