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. List<String?>? attendees]
)

Implementation

CalendarEvent(
    [this.eventId,
    this.calendarId,
    this.title,
    this.description,
    this.start,
    this.end,
    this.allDay,
    this.location,
    this.attendees]);