CheckboxField constructor

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

Implementation

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