Event constructor

Event(
  1. String? calendarId, {
  2. String? eventId,
  3. String? title,
  4. DateTime? start,
  5. DateTime? end,
  6. String? startTimeZone,
  7. String? endTimeZone,
  8. String? description,
  9. List<Attendee?>? attendees,
  10. RecurrenceRule? recurrenceRule,
  11. List<Reminder>? reminders,
  12. Availability? availability,
  13. bool? allDay = false,
})

Implementation

Event(this.calendarId,
    {this.eventId,
    this.title,
    this.start,
    this.end,
    this.startTimeZone,
    this.endTimeZone,
    this.description,
    this.attendees,
    this.recurrenceRule,
    this.reminders,
    this.availability,
    this.allDay = false});