ParticipantReportResponse constructor

ParticipantReportResponse({
  1. List<GroupedStatsResponse> byBrowser = const [],
  2. List<GroupedStatsResponse> byCountry = const [],
  3. List<GroupedStatsResponse> byDevice = const [],
  4. List<GroupedStatsResponse> byOperatingSystem = const [],
  5. ParticipantCountOverTimeResponse? countOverTime,
  6. int? maxConcurrent,
  7. PublisherStatsResponse? publishers,
  8. SubscriberStatsResponse? subscribers,
  9. required int sum,
  10. required int unique,
})

Returns a new ParticipantReportResponse instance.

Implementation

ParticipantReportResponse({
  this.byBrowser = const [],
  this.byCountry = const [],
  this.byDevice = const [],
  this.byOperatingSystem = const [],
  this.countOverTime,
  this.maxConcurrent,
  this.publishers,
  this.subscribers,
  required this.sum,
  required this.unique,
});