GoogleCloudDialogflowV2SentimentAnalysisResult.fromJson constructor
GoogleCloudDialogflowV2SentimentAnalysisResult.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2SentimentAnalysisResult.fromJson(core.Map json_)
: this(
queryTextSentiment: json_.containsKey('queryTextSentiment')
? GoogleCloudDialogflowV2Sentiment.fromJson(
json_['queryTextSentiment']
as core.Map<core.String, core.dynamic>)
: null,
);