GoogleCloudDialogflowV2IngestContextReferencesRequest.fromJson constructor

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