CallParticipantResponse constructor

CallParticipantResponse({
  1. required DateTime joinedAt,
  2. required String role,
  3. required UserResponse user,
  4. required String userSessionId,
})

Returns a new CallParticipantResponse instance.

Implementation

CallParticipantResponse({
  required this.joinedAt,
  required this.role,
  required this.user,
  required this.userSessionId,
});