Checkbox constructor
Checkbox({
- required bool value,
- Widget? label,
- ValueCmdCallback<
bool> ? onChanged, - bool enabled = true,
- bool autofocus = false,
- String? focusId,
- FocusController? focusController,
- Key? key,
Implementation
Checkbox({
required this.value,
this.label,
this.onChanged,
this.enabled = true,
this.autofocus = false,
this.focusId,
this.focusController,
super.key,
});