StepperConnector constructor

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

Implementation

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