QueryCallParticipantSessionsResponse constructor
QueryCallParticipantSessionsResponse({
- required String callId,
- required String callSessionId,
- required String callType,
- required int duration,
- String? next,
- List<
ParticipantSessionDetails> participantsSessions = const [], - String? prev,
- CallSessionResponse? session,
- required int totalParticipantDuration,
- 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,
});