GoogleCloudAiplatformV1ListModelEvaluationsResponse.fromJson constructor
GoogleCloudAiplatformV1ListModelEvaluationsResponse.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1ListModelEvaluationsResponse.fromJson(core.Map json_)
: this(
modelEvaluations: json_.containsKey('modelEvaluations')
? (json_['modelEvaluations'] as core.List)
.map((value) =>
GoogleCloudAiplatformV1ModelEvaluation.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);