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