bodySpeechToTextV1SpeechToTextPostTimestampsGranularityListToJson function
List<String>
bodySpeechToTextV1SpeechToTextPostTimestampsGranularityListToJson(
- List<
BodySpeechToTextV1SpeechToTextPostTimestampsGranularity> ? bodySpeechToTextV1SpeechToTextPostTimestampsGranularity
Implementation
List<String> bodySpeechToTextV1SpeechToTextPostTimestampsGranularityListToJson(
List<enums.BodySpeechToTextV1SpeechToTextPostTimestampsGranularity>?
bodySpeechToTextV1SpeechToTextPostTimestampsGranularity) {
if (bodySpeechToTextV1SpeechToTextPostTimestampsGranularity == null) {
return [];
}
return bodySpeechToTextV1SpeechToTextPostTimestampsGranularity
.map((e) => e.value!)
.toList();
}