CustomCheckBox constructor
CustomCheckBox({})
Implementation
CustomCheckBox({
super.key,
required this.theme,
required this.value,
this.enable = true,
this.text = '',
this.description = '',
Color? textColor,
Color? activeColor,
this.disableColor = Colors.grey,
this.size = 24,
this.onChanged,
}) : textColor = textColor ?? theme.textColor(),
activeColor = activeColor ?? theme.primaryColor();