GoogleCloudDialogflowV2SuggestConversationSummaryResponse.fromJson constructor
GoogleCloudDialogflowV2SuggestConversationSummaryResponse.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2SuggestConversationSummaryResponse.fromJson(
core.Map json_,
) : this(
contextSize: json_['contextSize'] as core.int?,
latestMessage: json_['latestMessage'] as core.String?,
summary:
json_.containsKey('summary')
? GoogleCloudDialogflowV2SuggestConversationSummaryResponseSummary.fromJson(
json_['summary'] as core.Map<core.String, core.dynamic>,
)
: null,
);