LiveInjectStreamConfig constructor

LiveInjectStreamConfig({
  1. int? width,
  2. int? height,
  3. int? videoGop,
  4. VideoFrameRate? videoFramerate,
  5. int? videoBitrate,
  6. AudioSampleRateType? audioSampleRate,
  7. int? audioBitrate,
  8. AudioChannel? audioChannels,
})

Constructs the LiveInjectStreamConfig.

Implementation

LiveInjectStreamConfig({
  this.width,
  this.height,
  this.videoGop,
  this.videoFramerate,
  this.videoBitrate,
  this.audioSampleRate,
  this.audioBitrate,
  this.audioChannels,
});