NiceTimelineItem constructor

const NiceTimelineItem({
  1. required String title,
  2. String? description,
  3. String? timestamp,
  4. Color? color,
  5. Widget? child,
})

Implementation

const NiceTimelineItem({
  required this.title,
  this.description,
  this.timestamp,
  this.color,
  this.child,
});