SpeechRecognitionResult.fromJson constructor
SpeechRecognitionResult.fromJson(
- Map json_
Implementation
SpeechRecognitionResult.fromJson(core.Map json_)
: this(
alternatives: (json_['alternatives'] as core.List?)
?.map((value) => SpeechRecognitionAlternative.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
channelTag: json_['channelTag'] as core.int?,
languageCode: json_['languageCode'] as core.String?,
resultEndTime: json_['resultEndTime'] as core.String?,
);