PlexTimeline constructor

const PlexTimeline({
  1. Key? key,
  2. required List<PlexTimelineEvent> events,
  3. bool alternating = false,
  4. Color? lineColor,
  5. double dotRadius = 10.0,
})

Implementation

const PlexTimeline({
  super.key,
  required this.events,
  this.alternating = false,
  this.lineColor,
  this.dotRadius = 10.0,
});