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