Simple text-to-speech conversion (convenience method)
@override Future<List<int>> speech(String text) async { final response = await textToSpeech(TTSRequest(text: text)); return response.audioData; }