v1SpeechToSpeechVoiceIdPostOutputFormatListToJson function

List<String> v1SpeechToSpeechVoiceIdPostOutputFormatListToJson(
  1. List<V1SpeechToSpeechVoiceIdPostOutputFormat>? v1SpeechToSpeechVoiceIdPostOutputFormat
)

Implementation

List<String> v1SpeechToSpeechVoiceIdPostOutputFormatListToJson(
    List<enums.V1SpeechToSpeechVoiceIdPostOutputFormat>?
        v1SpeechToSpeechVoiceIdPostOutputFormat) {
  if (v1SpeechToSpeechVoiceIdPostOutputFormat == null) {
    return [];
  }

  return v1SpeechToSpeechVoiceIdPostOutputFormat.map((e) => e.value!).toList();
}