GoogleCloudAiplatformV1LineageSubgraph.fromJson constructor
GoogleCloudAiplatformV1LineageSubgraph.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1LineageSubgraph.fromJson(core.Map json_)
: this(
artifacts: (json_['artifacts'] as core.List?)
?.map((value) => GoogleCloudAiplatformV1Artifact.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
events: (json_['events'] as core.List?)
?.map((value) => GoogleCloudAiplatformV1Event.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
executions: (json_['executions'] as core.List?)
?.map((value) => GoogleCloudAiplatformV1Execution.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);