ProgressFlow constructor

const ProgressFlow({
  1. Key? key,
  2. required List<MBInfo> steps,
  3. required int currentStep,
  4. Color? activeColor,
  5. Color? inactiveColor,
  6. double height = 120,
  7. double stepCircleSize = 35,
  8. double lineHeight = 6,
  9. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 24.0, vertical: 8.0),
})

Implementation

const ProgressFlow({
  Key? key,
  required this.steps,
  required this.currentStep,
  this.activeColor,
  this.inactiveColor,
  this.height = 120,
  this.stepCircleSize = 35,
  this.lineHeight = 6,
  this.padding = const EdgeInsets.symmetric(horizontal: 24.0, vertical: 8.0),
}) : super(key: key);