CheckBoxWidget constructor

const CheckBoxWidget({
  1. Key? key,
  2. required String fieldName,
  3. bool initialValue = false,
  4. dynamic onChanged(
    1. bool? value
    )?,
  5. EdgeInsets? padding,
})

Implementation

const CheckBoxWidget(
    {super.key,
    required this.fieldName,
    this.initialValue = false,
    this.onChanged,
    this.padding});