SubZeroProgressTracker constructor

const SubZeroProgressTracker({
  1. Key? key,
  2. required List<SubZeroProgressStep> steps,
  3. required int currentStep,
  4. SubZeroProgressTrackerOrientation orientation = SubZeroProgressTrackerOrientation.vertical,
  5. bool interactive = false,
  6. ValueChanged<int>? onStepTapped,
  7. bool showHeader = false,
  8. double verticalStepSpacing = 24,
  9. double connectorThickness = 2,
})

Implementation

const SubZeroProgressTracker({
  super.key,
  required this.steps,
  required this.currentStep,
  this.orientation = SubZeroProgressTrackerOrientation.vertical,
  this.interactive = false,
  this.onStepTapped,
  this.showHeader = false,
  this.verticalStepSpacing = 24,
  this.connectorThickness = 2,
});