GoogleCloudDialogflowV2ImportAgentRequest.fromJson constructor

GoogleCloudDialogflowV2ImportAgentRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2ImportAgentRequest.fromJson(core.Map json_)
    : this(
        agentContent: json_.containsKey('agentContent')
            ? json_['agentContent'] as core.String
            : null,
        agentUri: json_.containsKey('agentUri')
            ? json_['agentUri'] as core.String
            : null,
      );