GoogleCloudDatacatalogLineageV1LineageEvent.fromJson constructor
GoogleCloudDatacatalogLineageV1LineageEvent.fromJson(
- Map json_
Implementation
GoogleCloudDatacatalogLineageV1LineageEvent.fromJson(core.Map json_)
: this(
endTime: json_.containsKey('endTime')
? json_['endTime'] as core.String
: null,
links: json_.containsKey('links')
? (json_['links'] as core.List)
.map((value) =>
GoogleCloudDatacatalogLineageV1EventLink.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
startTime: json_.containsKey('startTime')
? json_['startTime'] as core.String
: null,
);