v1TextToSpeechVoiceIdStreamWithTimestampsPostOutputFormatExplodedListToJson function

String v1TextToSpeechVoiceIdStreamWithTimestampsPostOutputFormatExplodedListToJson(
  1. List<V1TextToSpeechVoiceIdStreamWithTimestampsPostOutputFormat>? v1TextToSpeechVoiceIdStreamWithTimestampsPostOutputFormat
)

Implementation

String
    v1TextToSpeechVoiceIdStreamWithTimestampsPostOutputFormatExplodedListToJson(
        List<enums.V1TextToSpeechVoiceIdStreamWithTimestampsPostOutputFormat>?
            v1TextToSpeechVoiceIdStreamWithTimestampsPostOutputFormat) {
  return v1TextToSpeechVoiceIdStreamWithTimestampsPostOutputFormat
          ?.map((e) => e.value!)
          .join(',') ??
      '';
}