RadioStyle constructor

const RadioStyle({
  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. BorderRadiusGeometry? borderRadius,
  13. BorderStyle? borderStyle,
  14. double? thumbInset,
  15. Color? thumbColor,
  16. double? thumbOpacity,
  17. int? thumbAlpha,
  18. Color? overlayColor,
  19. double? overlayOpacity,
  20. bool? overlayDisabled,
  21. double? overlayRadius,
})

Create a raw style of radio widget

Implementation

const RadioStyle({
  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.thumbInset,
  this.thumbColor,
  this.thumbOpacity,
  this.thumbAlpha,
  this.overlayColor,
  this.overlayOpacity,
  this.overlayDisabled,
  this.overlayRadius,
});