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