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