GooglePrivacyDlpV2DeidentifyContentResponse.fromJson constructor
GooglePrivacyDlpV2DeidentifyContentResponse.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DeidentifyContentResponse.fromJson(core.Map json_)
: this(
item: json_.containsKey('item')
? GooglePrivacyDlpV2ContentItem.fromJson(
json_['item'] as core.Map<core.String, core.dynamic>)
: null,
overview: json_.containsKey('overview')
? GooglePrivacyDlpV2TransformationOverview.fromJson(
json_['overview'] as core.Map<core.String, core.dynamic>)
: null,
);