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