VoiceEffectConfig constructor

const VoiceEffectConfig({
  1. required VoiceEffect effect,
  2. double intensity = 0.5,
  3. bool isEnabled = true,
  4. Map<String, double> parameters = const {},
})

Implementation

const VoiceEffectConfig({
  required this.effect,
  this.intensity = 0.5,
  this.isEnabled = true,
  this.parameters = const {},
});