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