CheckboxField constructor

const CheckboxField({
  1. Key? key,
  2. bool autofocus = false,
  3. required String labelText,
  4. required bool initialValue,
  5. required void onChanged(
    1. bool
    ),
})

Implementation

const CheckboxField({
  super.key,
  this.autofocus = false,
  required this.labelText,
  required this.initialValue,
  required this.onChanged,
});