TogeCheckboxLabelWidget constructor

const TogeCheckboxLabelWidget({
  1. Key? key,
  2. required String label,
  3. dynamic onChanged(
    1. bool?
    )?,
  4. bool? value,
  5. TextStyle? labelStyle,
  6. bool enabled = true,
  7. double size = 10,
})

Implementation

const TogeCheckboxLabelWidget({
  super.key,
  required this.label,
  this.onChanged,
  this.value,
  this.labelStyle,
  this.enabled = true,
  this.size = 10,
});