AtomicStepProgress constructor

const AtomicStepProgress({
  1. Key? key,
  2. required List<AtomicProgressStep> steps,
  3. required int currentStep,
  4. Color? activeColor,
  5. Color? inactiveColor,
  6. Color? completedColor,
  7. AtomicStepProgressOrientation orientation = AtomicStepProgressOrientation.horizontal,
  8. EdgeInsetsGeometry? margin,
})

Implementation

const AtomicStepProgress({
  super.key,
  required this.steps,
  required this.currentStep,
  this.activeColor,
  this.inactiveColor,
  this.completedColor,
  this.orientation = AtomicStepProgressOrientation.horizontal,
  this.margin,
});