QueryCallParticipantSessionsResponse constructor

QueryCallParticipantSessionsResponse({
  1. required String callId,
  2. required String callSessionId,
  3. required String callType,
  4. required int duration,
  5. String? next,
  6. List<ParticipantSessionDetails> participantsSessions = const [],
  7. String? prev,
  8. CallSessionResponse? session,
  9. required int totalParticipantDuration,
  10. required int totalParticipantSessions,
})

Returns a new QueryCallParticipantSessionsResponse instance.

Implementation

QueryCallParticipantSessionsResponse({
  required this.callId,
  required this.callSessionId,
  required this.callType,
  required this.duration,
  this.next,
  this.participantsSessions = const [],
  this.prev,
  this.session,
  required this.totalParticipantDuration,
  required this.totalParticipantSessions,
});