StepperItem constructor

const StepperItem({
  1. Key? key,
  2. required bool isPassed,
  3. required Widget child,
  4. required Duration animationDuration,
  5. required bool shouldRedraw,
  6. required int delayFactor,
  7. required Curve curve,
  8. Duration animationAwaitDuration = Duration.zero,
  9. Color? activeColor,
  10. Color? disabledColor,
})

Implementation

const StepperItem({
  Key? key,
  required this.isPassed,
  required this.child,
  required this.animationDuration,
  required this.shouldRedraw,
  required this.delayFactor,
  required this.curve,
  this.animationAwaitDuration = Duration.zero,
  this.activeColor,
  this.disabledColor,
}) : super(key: key);