QueryCallSessionParticipantStatsResponse constructor

QueryCallSessionParticipantStatsResponse({
  1. DateTime? callEndedAt,
  2. List<CallLevelEventPayload> callEvents = const [],
  3. required String callId,
  4. required String callSessionId,
  5. DateTime? callStartedAt,
  6. required String callType,
  7. required CallStatsParticipantCounts counts,
  8. required String duration,
  9. String? next,
  10. List<CallStatsParticipant> participants = const [],
  11. String? prev,
  12. String? tmpDataSource,
})

Implementation

QueryCallSessionParticipantStatsResponse({
  this.callEndedAt,
  this.callEvents = const [],
  required this.callId,
  required this.callSessionId,
  this.callStartedAt,
  required this.callType,
  required this.counts,
  required this.duration,
  this.next,
  this.participants = const [],
  this.prev,
  this.tmpDataSource,
});