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