GoogleCloudAiplatformV1TrajectoryRecallResults.fromJson constructor
GoogleCloudAiplatformV1TrajectoryRecallResults.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1TrajectoryRecallResults.fromJson(core.Map json_)
: this(
trajectoryRecallMetricValues:
(json_['trajectoryRecallMetricValues'] as core.List?)
?.map(
(value) =>
GoogleCloudAiplatformV1TrajectoryRecallMetricValue.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);