CallHLSBroadcastingStartedEvent constructor

CallHLSBroadcastingStartedEvent({
  1. required CallResponse call,
  2. required String callCid,
  3. required DateTime createdAt,
  4. required String hlsPlaylistUrl,
  5. String type = 'call.hls_broadcasting_started',
})

Returns a new CallHLSBroadcastingStartedEvent instance.

Implementation

CallHLSBroadcastingStartedEvent({
  required this.call,
  required this.callCid,
  required this.createdAt,
  required this.hlsPlaylistUrl,
  this.type = 'call.hls_broadcasting_started',
});