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