GooglePrivacyDlpV2ListColumnDataProfilesResponse.fromJson constructor

GooglePrivacyDlpV2ListColumnDataProfilesResponse.fromJson(
  1. Map json_
)

Implementation

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