CalendarEvent constructor

CalendarEvent([
  1. String? eventId,
  2. String? calendarId,
  3. String? title,
  4. String? description,
  5. DateTime? start,
  6. DateTime? end,
  7. bool? allDay,
  8. String? location,
  9. String? status,
  10. String? timeZone,
  11. bool isRecurring = false,
])

Implementation

CalendarEvent([
  this.eventId,
  this.calendarId,
  this.title,
  this.description,
  this.start,
  this.end,
  this.allDay,
  this.location,
  this.status,
  this.timeZone,
  this.isRecurring = false,
]);