CustomCheckbox constructor

const CustomCheckbox({
  1. Key? key,
  2. required bool isChecked,
  3. required dynamic onCheck(
    1. bool isChecked
    ),
})

Implementation

const CustomCheckbox({
  super.key,
  required this.isChecked,
  required this.onCheck,
});