HorizontalStep constructor

const HorizontalStep({
  1. required Key key,
  2. required double itemGap,
  3. required bool isActive,
  4. required bool isNextActive,
  5. String? display,
  6. bool isFirst = false,
  7. bool isLast = false,
  8. required Color activeColor,
  9. required Color color,
  10. TextStyle? labelStyle,
  11. TextStyle? dateStyle,
})

Implementation

const HorizontalStep(
    {required this.key,
      required this.itemGap,
      required this.isActive,
      required this.isNextActive,
      this.display,
      this.isFirst = false,
      this.isLast = false,
      required this.activeColor ,
      required this.color ,
      this.labelStyle,
      this.dateStyle
    }):super(key: key);