Attendee constructor

Attendee({
  1. String? attendeeId,
  2. String? externalUserId,
  3. String? joinToken,
})

Implementation

Attendee({
  this.attendeeId,
  this.externalUserId,
  this.joinToken,
});