TimelineThemeData constructor
TimelineThemeData({
- double gutterSpacing = 12.0,
- double itemGap = 24.0,
- double lineGap = 0.0,
- double strokeWidth = 4.0,
- StrokeCap strokeCap = StrokeCap.butt,
- Color lineColor = Colors.lightBlueAccent,
- PaintingStyle style = PaintingStyle.stroke,
- IndicatorPosition indicatorPosition = IndicatorPosition.center,
Implementation
TimelineThemeData({
this.gutterSpacing = 12.0,
this.itemGap = 24.0,
this.lineGap = 0.0,
this.strokeWidth = 4.0,
this.strokeCap = StrokeCap.butt,
this.lineColor = Colors.lightBlueAccent,
this.style = PaintingStyle.stroke,
this.indicatorPosition = IndicatorPosition.center,
}) : assert(itemGap >= 0),
assert(lineGap >= 0);