CustomCheckBox constructor

CustomCheckBox({
  1. Key? key,
  2. required Widget iconChecked,
  3. required Widget iconNormal,
  4. required Size size,
  5. required bool value,
  6. required bool clickable,
  7. dynamic onChanged(
    1. bool
    )?,
  8. double padding = 0,
})

Implementation

CustomCheckBox({
  Key? key,
  required this.iconChecked,
  required this.iconNormal,
  /* this.iconDisable,*/
  required this.size,
  required this.value,
  required this.clickable,
  this.onChanged,
  this.padding = 0,
}) : super(key: key);