CallStatsParticipantSession constructor

CallStatsParticipantSession({
  1. String? browser,
  2. String? browserVersion,
  3. int? cqScore,
  4. String? currentIp,
  5. String? currentSfu,
  6. double? distanceToSfuKilometers,
  7. DateTime? endedAt,
  8. int? freezesDurationMs,
  9. required bool isLive,
  10. int? jitterMs,
  11. int? latencyMs,
  12. CallStatsLocation? location,
  13. String? os,
  14. required PublishedTrackFlags publishedTracks,
  15. String? publisherType,
  16. String? sdk,
  17. String? sdkVersion,
  18. DateTime? startedAt,
  19. String? unifiedSessionId,
  20. required String userSessionId,
  21. String? webrtcVersion,
})

Returns a new CallStatsParticipantSession instance.

Implementation

CallStatsParticipantSession({
  this.browser,
  this.browserVersion,
  this.cqScore,
  this.currentIp,
  this.currentSfu,
  this.distanceToSfuKilometers,
  this.endedAt,
  this.freezesDurationMs,
  required this.isLive,
  this.jitterMs,
  this.latencyMs,
  this.location,
  this.os,
  required this.publishedTracks,
  this.publisherType,
  this.sdk,
  this.sdkVersion,
  this.startedAt,
  this.unifiedSessionId,
  required this.userSessionId,
  this.webrtcVersion,
});