GoogleCloudDialogflowV2ConversationContext.fromJson constructor
GoogleCloudDialogflowV2ConversationContext.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2ConversationContext.fromJson(core.Map json_)
: this(
messageEntries:
(json_['messageEntries'] as core.List?)
?.map(
(value) => GoogleCloudDialogflowV2MessageEntry.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);