CallStatsReportReadyEvent constructor

CallStatsReportReadyEvent({
  1. required String callCid,
  2. required DateTime createdAt,
  3. required String sessionId,
  4. String type = 'call.stats_report_ready',
})

Returns a new CallStatsReportReadyEvent instance.

Implementation

CallStatsReportReadyEvent({
  required this.callCid,
  required this.createdAt,
  required this.sessionId,
  this.type = 'call.stats_report_ready',
});