RoundCheckBox constructor
const
RoundCheckBox({
- Key? key,
- bool? isChecked,
- Widget? checkedWidget,
- Widget? uncheckedWidget,
- Color? checkedColor,
- Color? uncheckedColor,
- Color? disabledColor,
- Border? border,
- Color? borderColor,
- double? size,
- Duration? animationDuration,
- double? checkIconSize,
- bool isRound = true,
- bool disabled = false,
- required dynamic onTap(
- 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.checkIconSize,
this.isRound = true,
this.disabled = false,
required this.onTap,
}) : super(key: key);