bodySpeechToTextV1SpeechToTextPostFileFormatExplodedListToJson function

String bodySpeechToTextV1SpeechToTextPostFileFormatExplodedListToJson(
  1. List<BodySpeechToTextV1SpeechToTextPostFileFormat>? bodySpeechToTextV1SpeechToTextPostFileFormat
)

Implementation

String bodySpeechToTextV1SpeechToTextPostFileFormatExplodedListToJson(
    List<enums.BodySpeechToTextV1SpeechToTextPostFileFormat>?
        bodySpeechToTextV1SpeechToTextPostFileFormat) {
  return bodySpeechToTextV1SpeechToTextPostFileFormat
          ?.map((e) => e.value!)
          .join(',') ??
      '';
}