tTSOutputFormatListToJson function
Implementation
List<String> tTSOutputFormatListToJson(
List<enums.TTSOutputFormat>? tTSOutputFormat) {
if (tTSOutputFormat == null) {
return [];
}
return tTSOutputFormat.map((e) => e.value!).toList();
}