KiteCheckbox constructor

const KiteCheckbox({
  1. required bool value,
  2. required ValueChanged<bool?>? onChanged,
  3. Key? key,
  4. String? label,
  5. String? description,
})

Implementation

const KiteCheckbox({
  required this.value,
  required this.onChanged,
  super.key,
  this.label,
  this.description,
});