TimelineItem constructor

const TimelineItem({
  1. required String title,
  2. String? subtitle,
  3. String? description,
  4. String? icon,
  5. String? iconColor,
  6. bool completed = false,
})

Implementation

const TimelineItem({
  required this.title,
  this.subtitle,
  this.description,
  this.icon,
  this.iconColor,
  this.completed = false,
});