CheckboxWidget constructor

const CheckboxWidget({
  1. Key? key,
  2. required bool isChecked,
  3. required ValueChanged<bool> onChanged,
  4. required Widget title,
  5. Widget? subtitle,
  6. Color? checkedColor,
  7. Icon? checkedIcon,
})

Implementation

const CheckboxWidget({
  super.key,
  required this.isChecked,
  required this.onChanged,
  required this.title,
  this.subtitle,
  this.checkedColor,
  this.checkedIcon,
});