GooglePrivacyDlpV2ReidentifyContentResponse.fromJson constructor
GooglePrivacyDlpV2ReidentifyContentResponse.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2ReidentifyContentResponse.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,
);