VoiceCover constructor

const VoiceCover({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. required dynamic initAudio,
  5. String? modelId,
  6. String? pitch,
  7. String? algorithm,
  8. String? rate,
  9. String? seed,
  10. String? language,
  11. String? emotion = 'neutral',
  12. double? speed,
  13. double? radius,
  14. double? mix,
  15. int? hopLength,
  16. double? originality,
  17. int? leadVoiceVolumeDelta,
  18. int? backupVoiceVolumeDelta,
  19. int? instrumentVolumeDelta,
  20. double? reverbSize,
  21. double? wetness,
  22. double? dryness,
  23. double? damping,
  24. bool? base64,
  25. double? temp,
})

Implementation

const VoiceCover({
  required this.key,
  this.webhook,
  this.trackId,
  required this.initAudio,
  this.modelId,
  this.pitch,
  this.algorithm,
  this.rate,
  this.seed,
  this.language,
  this.emotion = 'neutral',
  this.speed,
  this.radius,
  this.mix,
  this.hopLength,
  this.originality,
  this.leadVoiceVolumeDelta,
  this.backupVoiceVolumeDelta,
  this.instrumentVolumeDelta,
  this.reverbSize,
  this.wetness,
  this.dryness,
  this.damping,
  this.base64,
  this.temp,
});