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