removeEffect method
Remove an effect from the chain
Implementation
VoiceEffectSettings removeEffect(VoiceEffect effect) {
return copyWith(
effectChain: effectChain.where((e) => e.effect != effect).toList(),
);
}
Remove an effect from the chain
VoiceEffectSettings removeEffect(VoiceEffect effect) {
return copyWith(
effectChain: effectChain.where((e) => e.effect != effect).toList(),
);
}