VadParams constructor

VadParams({
  1. bool? vadEnable = true,
  2. String? engineType = 'evad',
  3. ResType? resType = ResType.assets,
  4. String? resPath = 'vad/evad_16k.jet',
  5. int? vadEos = 600,
  6. int? vadBos,
  7. int? cloudVadEos,
  8. int? cloudVadGap,
})

Implementation

VadParams({
  this.vadEnable = true,
  this.engineType = 'evad',
  this.resType = ResType.assets,
  this.resPath = 'vad/evad_16k.jet',
  this.vadEos = 600,
  this.vadBos,
  this.cloudVadEos,
  this.cloudVadGap,
}) : assert(vadEnable == false || (resPath != null && resType != null));