PlexTimelineEvent constructor

const PlexTimelineEvent({
  1. required String title,
  2. String? subtitle,
  3. String? timestamp,
  4. Widget? icon,
  5. Color? color,
  6. Widget? child,
})

Implementation

const PlexTimelineEvent({
  required this.title,
  this.subtitle,
  this.timestamp,
  this.icon,
  this.color,
  this.child,
});