TStepLine constructor

const TStepLine({
  1. Key? key,
  2. required Widget contentWidget,
  3. bool isGrey = false,
  4. dynamic lineColor,
  5. double lineWidth = 2,
  6. double iconTopPadding = 0,
  7. bool isDashLine = false,
  8. double dashLength = 4,
  9. double dashSpace = 4,
  10. double contentLeftPadding = 12,
  11. Color? normalColor,
  12. Color? highlightColor,
  13. Widget? iconWidget,
})

Implementation

const TStepLine({
  super.key,
  required this.contentWidget,
  this.isGrey = false,
  this.lineColor,
  this.lineWidth = 2,
  this.iconTopPadding = 0,
  this.isDashLine = false,
  this.dashLength = 4,
  this.dashSpace = 4,
  this.contentLeftPadding = 12,
  this.normalColor,
  this.highlightColor,
  this.iconWidget,
});