EventAttendee constructor

EventAttendee({
  1. int? additionalGuests,
  2. String? comment,
  3. String? displayName,
  4. String? email,
  5. String? id,
  6. bool? optional,
  7. bool? organizer,
  8. bool? resource,
  9. String? responseStatus,
  10. bool? self,
})

Implementation

EventAttendee({
  this.additionalGuests,
  this.comment,
  this.displayName,
  this.email,
  this.id,
  this.optional,
  this.organizer,
  this.resource,
  this.responseStatus,
  this.self,
});