RoundCheckBox constructor

const RoundCheckBox(
  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. bool isRound = true,
  13. required dynamic onTap(
    1. bool?
    )?}
)

Implementation

const RoundCheckBox({
  Key? key,
  this.isChecked,
  this.checkedWidget,
  this.uncheckedWidget,
  this.checkedColor,
  this.uncheckedColor,
  this.disabledColor,
  this.border,
  this.borderColor,
  this.size,
  this.animationDuration,
  this.isRound = true,
  required this.onTap,
}) : super(key: key);