GoLiveRequest constructor

GoLiveRequest({
  1. String? recordingStorageName,
  2. bool? startHls,
  3. bool? startRecording,
  4. bool? startRtmpBroadcasts,
  5. bool? startTranscription,
  6. String? transcriptionStorageName,
})

Returns a new GoLiveRequest instance.

Implementation

GoLiveRequest({
  this.recordingStorageName,
  this.startHls,
  this.startRecording,
  this.startRtmpBroadcasts,
  this.startTranscription,
  this.transcriptionStorageName,
});