AuiCheckbox constructor
const
AuiCheckbox({
- Key? key,
- required bool? value,
- required ValueChanged<
bool?> ? onChanged, - String? label,
- CheckboxLabelPosition labelPosition = CheckboxLabelPosition.right,
- Color? activeColor,
- Color checkColor = Colors.white,
- bool disabled = false,
- bool tristate = false,
Creates an AuiCheckbox.
Implementation
const AuiCheckbox({
super.key,
required this.value,
required this.onChanged,
this.label,
this.labelPosition = CheckboxLabelPosition.right,
this.activeColor,
this.checkColor = Colors.white,
this.disabled = false,
this.tristate = false,
});