TimelineItem constructor

const TimelineItem({
  1. required String title,
  2. String? description,
  3. String? time,
  4. Tone tone = Tone.neutral,
})

Creates a timeline event item.

Implementation

const TimelineItem({
  required this.title,
  this.description,
  this.time,
  this.tone = Tone.neutral,
});