TimelineItem constructor

TimelineItem({
  1. required Widget title,
  2. DateTime? time,
  3. bool active = false,
  4. IconData? iconData,
  5. String? id,
  6. List<String>? listId,
  7. VoidCallback? onTap,
})

Implementation

TimelineItem({
  required this.title,
  this.time,
  this.active = false,
  this.iconData,
  this.id,
  this.listId,
  this.onTap,
});