DigitCheckbox constructor
const
DigitCheckbox({
- Key? key,
- required String label,
- ValueChanged<
bool?> ? onChanged, - bool value = false,
- EdgeInsetsGeometry padding = const EdgeInsets.only(left: 4.0),
Implementation
const DigitCheckbox({
super.key,
required this.label,
this.onChanged,
this.value = false,
this.padding = const EdgeInsets.only(left: 4.0),
});