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