CheckBoxWidget constructor
const
CheckBoxWidget({
- Key? key,
- required String fieldName,
- bool initialValue = false,
- dynamic onChanged(
- bool? value
- EdgeInsets? padding,
Implementation
const CheckBoxWidget(
{super.key,
required this.fieldName,
this.initialValue = false,
this.onChanged,
this.padding});