GoogleCloudDialogflowV2ConversationContextReference.fromJson constructor
GoogleCloudDialogflowV2ConversationContextReference.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2ConversationContextReference.fromJson(core.Map json_)
: this(
contextContents: (json_['contextContents'] as core.List?)
?.map((value) =>
GoogleCloudDialogflowV2ConversationContextReferenceContextContent
.fromJson(value as core.Map<core.String, core.dynamic>))
.toList(),
createTime: json_['createTime'] as core.String?,
languageCode: json_['languageCode'] as core.String?,
updateMode: json_['updateMode'] as core.String?,
);