CallFrameRecordingStartedEvent constructor

CallFrameRecordingStartedEvent({
  1. required CallResponse call,
  2. required String callCid,
  3. required DateTime createdAt,
  4. required String egressId,
  5. String type = 'call.frame_recording_started',
})

Returns a new CallFrameRecordingStartedEvent instance.

Implementation

CallFrameRecordingStartedEvent({
  required this.call,
  required this.callCid,
  required this.createdAt,
  required this.egressId,
  this.type = 'call.frame_recording_started',
});