bodySpeechToTextV1SpeechToTextPostTimestampsGranularityNullableListFromJson function
List<BodySpeechToTextV1SpeechToTextPostTimestampsGranularity> ?
bodySpeechToTextV1SpeechToTextPostTimestampsGranularityNullableListFromJson(
- List? bodySpeechToTextV1SpeechToTextPostTimestampsGranularity, [
- List<
BodySpeechToTextV1SpeechToTextPostTimestampsGranularity> ? defaultValue
Implementation
List<enums.BodySpeechToTextV1SpeechToTextPostTimestampsGranularity>?
bodySpeechToTextV1SpeechToTextPostTimestampsGranularityNullableListFromJson(
List? bodySpeechToTextV1SpeechToTextPostTimestampsGranularity, [
List<enums.BodySpeechToTextV1SpeechToTextPostTimestampsGranularity>?
defaultValue,
]) {
if (bodySpeechToTextV1SpeechToTextPostTimestampsGranularity == null) {
return defaultValue;
}
return bodySpeechToTextV1SpeechToTextPostTimestampsGranularity
.map((e) =>
bodySpeechToTextV1SpeechToTextPostTimestampsGranularityFromJson(
e.toString()))
.toList();
}