PlexCalendarEvent constructor

const PlexCalendarEvent({
  1. required String id,
  2. required DateTime start,
  3. required String title,
  4. DateTime? end,
  5. Color? color,
  6. PlexCalendarRecurrence? recurrence,
  7. String? occurrenceOf,
})

Implementation

const PlexCalendarEvent({
  required this.id,
  required this.start,
  required this.title,
  this.end,
  this.color,
  this.recurrence,
  this.occurrenceOf,
});