GoogleCloudDialogflowV2IngestContextReferencesRequest.fromJson constructor
GoogleCloudDialogflowV2IngestContextReferencesRequest.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2IngestContextReferencesRequest.fromJson(core.Map json_)
: this(
contextReferences: (json_['contextReferences']
as core.Map<core.String, core.dynamic>?)
?.map(
(key, value) => core.MapEntry(
key,
GoogleCloudDialogflowV2ConversationContextReference.fromJson(
value as core.Map<core.String, core.dynamic>),
),
),
);