RoundedCheckBox constructor

const RoundedCheckBox({
  1. Key? key,
  2. bool? isChecked,
  3. Widget? checkedWidget,
  4. Widget? uncheckedWidget,
  5. Color? checkedColor,
  6. Color? uncheckedColor,
  7. Color? disabledColor,
  8. Border? border,
  9. Color? borderColor,
  10. double? size,
  11. Duration? animationDuration,
  12. dynamic onTap(
    1. bool?
    )?,
  13. String text = '',
  14. TextStyle? textStyle,
})

Implementation

const RoundedCheckBox({
  super.key,
  this.isChecked,
  this.checkedWidget,
  this.uncheckedWidget,
  this.checkedColor,
  this.uncheckedColor,
  this.disabledColor,
  this.border,
  this.borderColor,
  this.size,
  this.animationDuration,
  this.onTap,
  this.text = '',
  this.textStyle,
});