CallRecordingStartedEvent constructor

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

Returns a new CallRecordingStartedEvent instance.

Implementation

CallRecordingStartedEvent({
  required this.callCid,
  required this.createdAt,
  this.type = 'call.recording_started',
});