WheelSpinnerThemeData constructor

WheelSpinnerThemeData({
  1. BoxDecoration? boxDecoration,
  2. Border? border,
  3. BorderRadiusGeometry? borderRadius = defaultBorderRadius,
  4. Color? color,
  5. Gradient? gradient,
  6. int dividerCount = 10,
  7. Color? dividerColor,
})

Create a new theme for the wheel spinner

Implementation

WheelSpinnerThemeData({
  this.boxDecoration,
  this.border,
  this.borderRadius = defaultBorderRadius,
  this.color,
  this.gradient,
  this.dividerCount = 10,
  this.dividerColor,
});