WOICheckBox constructor

const WOICheckBox({
  1. Key? key,
  2. required bool isChecked,
  3. required ValueChanged<bool> onTap,
  4. Border? border,
  5. Border? checkedBorder,
  6. Color? checkedFillColor,
  7. double size = 25,
  8. EdgeInsets? innerPadding,
  9. Duration? duration,
  10. double borderRadius = 0,
  11. Icon? icon,
})

Implementation

const WOICheckBox({
  super.key,
  required this.isChecked,
  required this.onTap,
  this.border,
  this.checkedBorder,
  this.checkedFillColor,
  this.size = 25,
  this.innerPadding,
  this.duration,
  this.borderRadius = 0,
  this.icon,
});