CallStatsReportReadyEvent constructor

CallStatsReportReadyEvent({
  1. required String callCid,
  2. required DateTime createdAt,
  3. bool? isTrimmed,
  4. List<CallStatsParticipant> participantsOverview = const [],
  5. required String sessionId,
  6. String type = 'call.stats_report_ready',
})

Returns a new CallStatsReportReadyEvent instance.

Implementation

CallStatsReportReadyEvent({
  required this.callCid,
  required this.createdAt,
  this.isTrimmed,
  this.participantsOverview = const [],
  required this.sessionId,
  this.type = 'call.stats_report_ready',
});