GoogleCloudAiplatformV1DeployedModelRef.fromJson constructor

GoogleCloudAiplatformV1DeployedModelRef.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1DeployedModelRef.fromJson(core.Map json_)
    : this(
        deployedModelId: json_.containsKey('deployedModelId')
            ? json_['deployedModelId'] as core.String
            : null,
        endpoint: json_.containsKey('endpoint')
            ? json_['endpoint'] as core.String
            : null,
      );