JourneySegmentProgress constructor

const JourneySegmentProgress({
  1. Key? key,
  2. required int currentStep,
  3. required int totalSteps,
  4. required Color activeColor,
  5. required Color inactiveColor,
  6. double height = 4.0,
  7. double spacing = 4.0,
})

Implementation

const JourneySegmentProgress({
  super.key,
  required this.currentStep,
  required this.totalSteps,
  required this.activeColor,
  required this.inactiveColor,
  this.height = 4.0,
  this.spacing = 4.0,
});