StatusStepper constructor

const StatusStepper({
  1. required List<Widget> children,
  2. Duration animationDuration = const Duration(milliseconds: 200),
  3. int lastActiveIndex = -1,
  4. int currentIndex = -1,
  5. Duration animationDelayDuration = Duration.zero,
  6. Curve connectorCurve = Curves.linear,
  7. Curve itemCurve = Curves.linear,
  8. double connectorThickness = 2,
  9. Color? activeColor,
  10. Color? disabledColor,
  11. Key? key,
})

Implementation

const StatusStepper({
  required this.children,
  this.animationDuration = const Duration(milliseconds: 200),
  this.lastActiveIndex = -1,
  this.currentIndex = -1,
  this.animationDelayDuration = Duration.zero,
  this.connectorCurve = Curves.linear,
  this.itemCurve = Curves.linear,
  this.connectorThickness = 2,
  this.activeColor,
  this.disabledColor,
  Key? key,
}) : super(key: key);