ExperiencesTimeline constructor

const ExperiencesTimeline({
  1. Key? key,
  2. required List<ExperienceModel> experiences,
  3. bool enableBorderEffect = true,
  4. double spacing = 32,
  5. double? cardWidth,
  6. double? cardHeight,
  7. EdgeInsets? cardPadding,
  8. BorderRadius? cardBorderRadius,
  9. Color? lineColor,
  10. Color? backgroundColor,
  11. double? dotSize = 2.0,
  12. double? dotSpacing = 4.0,
  13. double? lineWidth = 1.0,
  14. bool showDottedLine = true,
})

Implementation

const ExperiencesTimeline({
  super.key,
  required this.experiences,
  this.enableBorderEffect = true,
  this.spacing = 32,
  this.cardWidth,
  this.cardHeight,
  this.cardPadding,
  this.cardBorderRadius,
  this.lineColor,
  this.backgroundColor,
  this.dotSize = 2.0,
  this.dotSpacing = 4.0,
  this.lineWidth = 1.0,
  this.showDottedLine = true,
});