CheckboxProps constructor
const
CheckboxProps({
- required String id,
- required bool checked,
- String? label,
- String? description,
- ComponentSize size = ComponentSize.md,
- ColorVariant color = ColorVariant.primary,
- bool disabled = false,
- void onChanged()?,
- String? group,
- String? value,
- ArcaneStyleData? styles,
- ArcaneDecoration? decoration,
Implementation
const CheckboxProps({
required this.id,
required this.checked,
this.label,
this.description,
this.size = ComponentSize.md,
this.color = ColorVariant.primary,
this.disabled = false,
this.onChanged,
this.group,
this.value,
this.styles,
this.decoration,
});