CalendarEvent constructor

CalendarEvent({
  1. String? id,
  2. String? createdDateTime,
  3. String? lastModifiedDateTime,
  4. bool? isReminderOn,
  5. String? subject,
  6. String? bodyPreview,
  7. bool? isAllDay,
  8. bool? isOrganizer,
  9. String? startDateTime,
  10. String? endDateTime,
  11. List<Attendee>? attendees,
  12. Organizer? organizer,
})

Creates a new instance of CalendarEvent.

All parameters are optional and can be null.

Implementation

CalendarEvent({
  this.id,
  this.createdDateTime,
  this.lastModifiedDateTime,
  this.isReminderOn,
  this.subject,
  this.bodyPreview,
  this.isAllDay,
  this.isOrganizer,
  this.startDateTime,
  this.endDateTime,
  this.attendees,
  this.organizer,
});