StepIndicatorTheme constructor

const StepIndicatorTheme(
  1. {Widget builder(
    1. int stepIndex,
    2. int? currentIndex
    )?,
  2. Color? completedBackgroundColor,
  3. BoxBorder? completedBorder,
  4. TextStyle? completedTextStyle,
  5. Color? inactiveBackgroundColor,
  6. BoxBorder? inactiveBorder,
  7. TextStyle? inactiveTextStyle,
  8. Color? activeBackgroundColor,
  9. BoxBorder? activeBorder,
  10. TextStyle? activeTextStyle}
)

Implementation

const StepIndicatorTheme({
  this.builder,
  this.completedBackgroundColor,
  this.completedBorder,
  this.completedTextStyle,
  this.inactiveBackgroundColor,
  this.inactiveBorder,
  this.inactiveTextStyle,
  this.activeBackgroundColor,
  this.activeBorder,
  this.activeTextStyle,
});