Voice2Voice constructor

const Voice2Voice({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. required dynamic initAudio,
  5. required dynamic targetAudio,
  6. bool? base64,
  7. double? temp,
  8. bool? stream,
})

Implementation

const Voice2Voice({
  required this.key,
  this.webhook,
  this.trackId,
  required this.initAudio,
  required this.targetAudio,
  this.base64,
  this.temp,
  this.stream,
});