NiceTimelineMarker constructor

const NiceTimelineMarker({
  1. required DateTime date,
  2. String? label,
  3. Color? color,
})

Implementation

const NiceTimelineMarker({
  required this.date,
  this.label,
  this.color,
});