AFieldCheckbox constructor

const AFieldCheckbox({
  1. void onChanged(
    1. bool?
    )?,
  2. Key? key,
  3. bool readOnly = false,
  4. bool required = false,
  5. bool? initialValue,
  6. String label = '',
  7. required String identifier,
  8. int? flexible,
  9. bool expanded = false,
  10. EdgeInsets? padding,
  11. EdgeInsets? margin,
  12. bool linkToAForm = true,
  13. VoidCallback? onSubmit,
})

Implementation

const AFieldCheckbox({
  super.onChanged,
  super.key,
  super.readOnly,
  super.required,
  super.initialValue,
  String super.label = '',
  required super.identifier,
  super.flexible,
  super.expanded,
  super.padding,
  super.margin,
  super.linkToAForm,
  super.onSubmit,
});