tTSOutputFormatListToJson function

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

Implementation

List<String> tTSOutputFormatListToJson(
    List<enums.TTSOutputFormat>? tTSOutputFormat) {
  if (tTSOutputFormat == null) {
    return [];
  }

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