v1TextToSpeechVoiceIdStreamPostOutputFormatExplodedListToJson function
String
v1TextToSpeechVoiceIdStreamPostOutputFormatExplodedListToJson(
- List<
V1TextToSpeechVoiceIdStreamPostOutputFormat> ? v1TextToSpeechVoiceIdStreamPostOutputFormat
Implementation
String v1TextToSpeechVoiceIdStreamPostOutputFormatExplodedListToJson(
List<enums.V1TextToSpeechVoiceIdStreamPostOutputFormat>?
v1TextToSpeechVoiceIdStreamPostOutputFormat) {
return v1TextToSpeechVoiceIdStreamPostOutputFormat
?.map((e) => e.value!)
.join(',') ??
'';
}