TimelineItem constructor

const TimelineItem({
  1. String? title,
  2. Color bubbleColor = Colors.blue,
  3. Widget? icon,
  4. String? subtitle,
  5. String? description,
  6. TextStyle? titleStyle,
  7. TextStyle? subtitleStyle,
  8. TextStyle? descriptionStyle,
  9. Widget? titleWidget,
  10. Widget? subtitleWidget,
  11. Widget? descriptionWidget,
})

Constructor

Implementation

const TimelineItem({
  this.title,
  this.bubbleColor = Colors.blue,
  this.icon,
  this.subtitle,
  this.description,
  this.titleStyle,
  this.subtitleStyle,
  this.descriptionStyle,
  this.titleWidget,
  this.subtitleWidget,
  this.descriptionWidget,
});