Step constructor

const Step({
  1. Key? key,
  2. required bool isActive,
  3. required bool isCompleted,
  4. String? title,
  5. Color? completedColor,
  6. Color? activeColor,
  7. Color? inactiveColor,
  8. Color? completedBorderColor,
})

Implementation

const Step({
  Key? key,
  required this.isActive,
  required this.isCompleted,
  this.title,
  this.completedColor,
  this.activeColor,
  this.inactiveColor,
  this.completedBorderColor,
}) : super(key: key);