GoogleCloudDatacatalogLineageV1EventLink.fromJson constructor
GoogleCloudDatacatalogLineageV1EventLink.fromJson(
- Map json_
Implementation
GoogleCloudDatacatalogLineageV1EventLink.fromJson(core.Map json_)
: this(
source: json_.containsKey('source')
? GoogleCloudDatacatalogLineageV1EntityReference.fromJson(
json_['source'] as core.Map<core.String, core.dynamic>)
: null,
target: json_.containsKey('target')
? GoogleCloudDatacatalogLineageV1EntityReference.fromJson(
json_['target'] as core.Map<core.String, core.dynamic>)
: null,
);