GoogleCloudAiplatformV1DirectPredictResponse.fromJson constructor
GoogleCloudAiplatformV1DirectPredictResponse.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1DirectPredictResponse.fromJson(core.Map json_)
: this(
outputs:
(json_['outputs'] as core.List?)
?.map(
(value) => GoogleCloudAiplatformV1Tensor.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
parameters:
json_.containsKey('parameters')
? GoogleCloudAiplatformV1Tensor.fromJson(
json_['parameters'] as core.Map<core.String, core.dynamic>,
)
: null,
);