v1SpeechToSpeechVoiceIdStreamPostOutputFormatExplodedListToJson function

String v1SpeechToSpeechVoiceIdStreamPostOutputFormatExplodedListToJson(
  1. List<V1SpeechToSpeechVoiceIdStreamPostOutputFormat>? v1SpeechToSpeechVoiceIdStreamPostOutputFormat
)

Implementation

String v1SpeechToSpeechVoiceIdStreamPostOutputFormatExplodedListToJson(
    List<enums.V1SpeechToSpeechVoiceIdStreamPostOutputFormat>?
        v1SpeechToSpeechVoiceIdStreamPostOutputFormat) {
  return v1SpeechToSpeechVoiceIdStreamPostOutputFormat
          ?.map((e) => e.value!)
          .join(',') ??
      '';
}