TolyCheckBox constructor

const TolyCheckBox({
  1. Key? key,
  2. required bool value,
  3. bool indeterminate = false,
  4. Widget? label,
  5. double labelSpacing = 6,
  6. double size = 16,
  7. BorderRadius? borderRadius,
  8. ValueChanged<bool>? onChanged,
})

Implementation

const TolyCheckBox({
  super.key,
  required this.value,
  this.indeterminate = false,
  this.label,
  this.labelSpacing = 6,
  this.size = 16,
  this.borderRadius,
  this.onChanged,
});