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