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