CallRtmpBroadcastStartedEvent constructor

CallRtmpBroadcastStartedEvent({
  1. required String callCid,
  2. required DateTime createdAt,
  3. required String name,
  4. String type = 'call.rtmp_broadcast_started',
})

Returns a new CallRtmpBroadcastStartedEvent instance.

Implementation

CallRtmpBroadcastStartedEvent({
  required this.callCid,
  required this.createdAt,
  required this.name,
  this.type = 'call.rtmp_broadcast_started',
});