CallLiveStartedEvent constructor

CallLiveStartedEvent({
  1. required CallResponse call,
  2. required String callCid,
  3. required DateTime createdAt,
  4. String type = 'call.live_started',
})

Returns a new CallLiveStartedEvent instance.

Implementation

CallLiveStartedEvent({
  required this.call,
  required this.callCid,
  required this.createdAt,
  this.type = 'call.live_started',
});