AttendeeModel constructor

AttendeeModel(
  1. String attendeeId,
  2. String externalUserId, {
  3. DateTime? joinedAt,
})

Implementation

AttendeeModel(
  this.attendeeId,
  this.externalUserId, {
  DateTime? joinedAt,
}) : joinedAt = joinedAt ?? DateTime.now();