createSimpleRequest method
Create a simple TTS request
Implementation
GoogleTTSRequest createSimpleRequest({
required String text,
String voiceName = 'Kore',
String? model,
}) {
return GoogleTTSRequest.singleSpeaker(
text: text,
voiceName: voiceName,
model: model ?? defaultTTSModel,
);
}