RadioButtonElementStyle constructor

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

Implementation

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