AudioPublishOptions constructor

const AudioPublishOptions({
  1. String? name,
  2. String? stream,
  3. AudioEncoding? encoding,
  4. bool dtx = true,
  5. bool? red = true,
  6. bool preConnect = false,
})

Implementation

const AudioPublishOptions({
  super.name,
  super.stream,
  this.encoding,
  this.dtx = true,
  this.red = true,
  this.preConnect = false,
});