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