CallHLSBroadcastingStartedEvent constructor

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

Returns a new CallHLSBroadcastingStartedEvent instance.

Implementation

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