LabeledCheckbox constructor

const LabeledCheckbox({
  1. Key? key,
  2. Widget? label,
  3. bool? value,
  4. ValueChanged<bool?>? onChanged,
})

Implementation

const LabeledCheckbox({
  Key? key,
  this.label,
  this.value,
  this.onChanged,
}) : super(key: key);