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