CheckBoxElementStyle constructor

CheckBoxElementStyle({
  1. TextStyle? labelStyle,
  2. Color? activeColor,
  3. Color? checkColor,
  4. TextStyle? optionTextStyle,
  5. double? width,
  6. double? height,
  7. Color? background,
  8. BoxBorder? border,
  9. double? borderRadius,
  10. Gradient? gradient,
})

Implementation

CheckBoxElementStyle({
  this.labelStyle,
  this.activeColor,
  this.checkColor,
  this.optionTextStyle,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});