CheckBoxWidget constructor
CheckBoxWidget({
- Key? key,
- required ClickProps clickProps,
- bool isChecked = false,
- bool isDisabled = false,
- WidgetCheckBox? layout,
- WidgetCheckBox? checkBox,
- bool interceptCallBacks = false,
- TextDirection textDirection = TextDirection.ltr,
- UiToApply uiToApply = UiToApply.material,
- 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,
});