aSRInputFormatExplodedListToJson function

String aSRInputFormatExplodedListToJson(
  1. List<ASRInputFormat>? aSRInputFormat
)

Implementation

String aSRInputFormatExplodedListToJson(
    List<enums.ASRInputFormat>? aSRInputFormat) {
  return aSRInputFormat?.map((e) => e.value!).join(',') ?? '';
}