GoogleCloudDialogflowCxV3DeploymentResult.fromJson constructor

GoogleCloudDialogflowCxV3DeploymentResult.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3DeploymentResult.fromJson(core.Map json_)
    : this(
        deploymentTestResults: json_.containsKey('deploymentTestResults')
            ? (json_['deploymentTestResults'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        experiment: json_.containsKey('experiment')
            ? json_['experiment'] as core.String
            : null,
      );