tTSOutputFormatExplodedListToJson function

String tTSOutputFormatExplodedListToJson(
  1. List<TTSOutputFormat>? tTSOutputFormat
)

Implementation

String tTSOutputFormatExplodedListToJson(
    List<enums.TTSOutputFormat>? tTSOutputFormat) {
  return tTSOutputFormat?.map((e) => e.value!).join(',') ?? '';
}