GoogleCloudVideointelligenceV1beta2SpeechTranscription.fromJson constructor
GoogleCloudVideointelligenceV1beta2SpeechTranscription.fromJson(- Map _json
)
Implementation
GoogleCloudVideointelligenceV1beta2SpeechTranscription.fromJson(
core.Map _json) {
if (_json.containsKey("alternatives")) {
alternatives = (_json["alternatives"] as core.List)
.map<GoogleCloudVideointelligenceV1beta2SpeechRecognitionAlternative>(
(value) =>
new GoogleCloudVideointelligenceV1beta2SpeechRecognitionAlternative
.fromJson(value))
.toList();
}
if (_json.containsKey("languageCode")) {
languageCode = _json["languageCode"];
}
}