SpeechAdaptationInfo.fromJson constructor
SpeechAdaptationInfo.fromJson(
- Map json_
Implementation
SpeechAdaptationInfo.fromJson(core.Map json_)
: this(
adaptationTimeout: json_.containsKey('adaptationTimeout')
? json_['adaptationTimeout'] as core.bool
: null,
timeoutMessage: json_.containsKey('timeoutMessage')
? json_['timeoutMessage'] as core.String
: null,
);