GoogleCloudDialogflowV2SentimentAnalysisResult.fromJson constructor

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