GoogleCloudDatacatalogLineageV1ListLineageEventsResponse.fromJson constructor
GoogleCloudDatacatalogLineageV1ListLineageEventsResponse.fromJson(
- Map json_
Implementation
GoogleCloudDatacatalogLineageV1ListLineageEventsResponse.fromJson(
core.Map json_,
) : this(
lineageEvents: (json_['lineageEvents'] as core.List?)
?.map(
(value) => GoogleCloudDatacatalogLineageV1LineageEvent.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);