CheckboxStyle constructor

const CheckboxStyle({
  1. double? size,
  2. BoxShape? shape,
  3. EdgeInsetsGeometry? margin,
  4. EdgeInsetsGeometry? padding,
  5. Color? backgroundColor,
  6. double? backgroundOpacity,
  7. int? backgroundAlpha,
  8. Color? borderColor,
  9. double? borderOpacity,
  10. int? borderAlpha,
  11. double? borderWidth,
  12. BorderRadius? borderRadius,
  13. BorderStyle? borderStyle,
  14. double? checkmarkInset,
  15. Color? checkmarkColor,
  16. double? checkmarkOpacity,
  17. int? checkmarkAlpha,
  18. double? checkmarkWeight,
  19. StrokeStyle? checkmarkStyle,
  20. Color? overlayColor,
  21. double? overlayOpacity,
  22. bool? overlayDisabled,
  23. double? overlayRadius,
})

Create a raw style of checkbox widget

Implementation

const CheckboxStyle({
  this.size,
  this.shape,
  this.margin,
  this.padding,
  this.backgroundColor,
  this.backgroundOpacity,
  this.backgroundAlpha,
  this.borderColor,
  this.borderOpacity,
  this.borderAlpha,
  this.borderWidth,
  this.borderRadius,
  this.borderStyle,
  this.checkmarkInset,
  this.checkmarkColor,
  this.checkmarkOpacity,
  this.checkmarkAlpha,
  this.checkmarkWeight,
  this.checkmarkStyle,
  this.overlayColor,
  this.overlayOpacity,
  this.overlayDisabled,
  this.overlayRadius,
});