CallTranscriptionStartedEvent constructor

CallTranscriptionStartedEvent({
  1. required String callCid,
  2. required DateTime createdAt,
  3. String type = 'call.transcription_started',
})

Returns a new CallTranscriptionStartedEvent instance.

Implementation

CallTranscriptionStartedEvent({
  required this.callCid,
  required this.createdAt,
  this.type = 'call.transcription_started',
});