style method
Sets style parameter for ElevenLabs TTS (0.0-1.0)
Controls the style exaggeration of the voice. Higher values make the voice more stylized and expressive, while lower values make it more neutral.
- 0.0: Neutral, less stylized
- 1.0: Maximum style exaggeration
- Default: Usually around 0.0
Implementation
ElevenLabsBuilder style(double style) {
_baseBuilder.extension('style', style);
return this;
}