CallClosedCaptionsStoppedEvent constructor

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

Returns a new CallClosedCaptionsStoppedEvent instance.

Implementation

CallClosedCaptionsStoppedEvent({
  required this.callCid,
  required this.createdAt,
  this.type = 'call.closed_captions_stopped',
});