CustomCheckbox constructor

const CustomCheckbox({
  1. Key? key,
  2. required bool value,
  3. required VoidCallback onTap,
  4. required String title,
  5. TextStyle? titleStyle,
  6. required String subtitle,
  7. Color? borderColor,
})

Implementation

const CustomCheckbox({
  super.key,
  required this.value,
  required this.onTap,
  required this.title,
  this.titleStyle,
  required this.subtitle,
  this.borderColor,
});