SpeechAdaptationInfo.fromJson constructor

SpeechAdaptationInfo.fromJson(
  1. 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,
      );