CheckBoxWidget constructor

CheckBoxWidget({
  1. Key? key,
  2. required ClickProps clickProps,
  3. bool isChecked = false,
  4. bool isDisabled = false,
  5. WidgetCheckBox? layout,
  6. WidgetCheckBox? checkBox,
  7. bool interceptCallBacks = false,
  8. TextDirection textDirection = TextDirection.ltr,
  9. UiToApply uiToApply = UiToApply.material,
  10. required ValueChanged<bool?>? onSelected,
})

Implementation

CheckBoxWidget({
  super.key,
  required this.clickProps,
  this.isChecked = false,
  this.isDisabled = false,
  this.layout,
  this.checkBox,
  this.interceptCallBacks = false,
  this.textDirection = TextDirection.ltr,
  this.uiToApply = UiToApply.material,
  required this.onSelected,
});