CallRecordingReadyEvent constructor

CallRecordingReadyEvent({
  1. required String callCid,
  2. required CallRecording callRecording,
  3. required DateTime createdAt,
  4. String type = 'call.recording_ready',
})

Returns a new CallRecordingReadyEvent instance.

Implementation

CallRecordingReadyEvent({
  required this.callCid,
  required this.callRecording,
  required this.createdAt,
  this.type = 'call.recording_ready',
});