AppCheckBox constructor

const AppCheckBox({
  1. Key? key,
  2. required void onChanged(
    1. bool?
    ),
  3. required bool selectedValue,
})

Implementation

const AppCheckBox({
  super.key,
  required this.onChanged,
  required this.selectedValue,
});