KatCheckBox constructor

const KatCheckBox({
  1. Key? key,
  2. ValueChanged<bool?>? onChanged,
  3. bool? value,
  4. String? label,
  5. double? width,
})

Implementation

const KatCheckBox({
  super.key,
  this.onChanged,
  this.value,
  this.label,
  this.width,
});