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