QueryCallStatsMapResponse constructor

QueryCallStatsMapResponse({
  1. DateTime? callEndedAt,
  2. required String callId,
  3. required String callSessionId,
  4. DateTime? callStartedAt,
  5. required String callType,
  6. required CallStatsParticipantCounts counts,
  7. String? dataSource,
  8. required String duration,
  9. DateTime? endTime,
  10. DateTime? generatedAt,
  11. CallStatsMapPublishers? publishers,
  12. CallStatsMapSFUs? sfus,
  13. DateTime? startTime,
  14. CallStatsMapSubscribers? subscribers,
})

Returns a new QueryCallStatsMapResponse instance.

Implementation

QueryCallStatsMapResponse({
  this.callEndedAt,
  required this.callId,
  required this.callSessionId,
  this.callStartedAt,
  required this.callType,
  required this.counts,
  this.dataSource,
  required this.duration,
  this.endTime,
  this.generatedAt,
  this.publishers,
  this.sfus,
  this.startTime,
  this.subscribers,
});