CallFrameRecordingStoppedEvent constructor

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

Returns a new CallFrameRecordingStoppedEvent instance.

Implementation

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