StepStyle constructor

const StepStyle({
  1. Color? color,
  2. Color? errorColor,
  3. Color? connectorColor,
  4. double? connectorThickness,
  5. BoxBorder? border,
  6. BoxShadow? boxShadow,
  7. Gradient? gradient,
  8. TextStyle? indexStyle,
})

Constructs a StepStyle.

Implementation

const StepStyle({
  this.color,
  this.errorColor,
  this.connectorColor,
  this.connectorThickness,
  this.border,
  this.boxShadow,
  this.gradient,
  this.indexStyle,
});