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