GoogleCloudDatacatalogLineageV1SearchLineageStreamingResponse.fromJson constructor
GoogleCloudDatacatalogLineageV1SearchLineageStreamingResponse.fromJson(
- Map json_
Implementation
GoogleCloudDatacatalogLineageV1SearchLineageStreamingResponse.fromJson(
core.Map json_,
) : this(
links: (json_['links'] as core.List?)
?.map(
(value) => GoogleCloudDatacatalogLineageV1LineageLink.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
unreachable: (json_['unreachable'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);