GooglePrivacyDlpV2ListTableDataProfilesResponse.fromJson constructor

GooglePrivacyDlpV2ListTableDataProfilesResponse.fromJson(
  1. Map json_
)

Implementation

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