GoogleCloudApihubV1FlattenedApiVersionDeploymentView.fromJson constructor

GoogleCloudApihubV1FlattenedApiVersionDeploymentView.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApihubV1FlattenedApiVersionDeploymentView.fromJson(core.Map json_)
  : this(
      api: json_.containsKey('api')
          ? GoogleCloudApihubV1Api.fromJson(
              json_['api'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      deployment: json_.containsKey('deployment')
          ? GoogleCloudApihubV1Deployment.fromJson(
              json_['deployment'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      version: json_.containsKey('version')
          ? GoogleCloudApihubV1Version.fromJson(
              json_['version'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );