RehaculCheckBox constructor

const RehaculCheckBox(
  1. {Key? key,
  2. required bool isChecked,
  3. double? size = 24,
  4. void onChanged(
    1. bool?
    )?}
)

Implementation

const RehaculCheckBox({
  super.key,
  required this.isChecked,
  this.size = 24,
  this.onChanged,
});