TogeCheckboxWidget constructor

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

Implementation

const TogeCheckboxWidget({
  super.key,
  required this.onChanged,
  this.value,
  this.type = TogeCheckboxType.common,
  this.enabled = true,
  this.label = '',
  this.labelStyle,
  this.size = 10,
});