GooglePrivacyDlpV2PubSubNotification.fromJson constructor
GooglePrivacyDlpV2PubSubNotification.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2PubSubNotification.fromJson(core.Map json_)
: this(
detailOfMessage: json_['detailOfMessage'] as core.String?,
event: json_['event'] as core.String?,
pubsubCondition: json_.containsKey('pubsubCondition')
? GooglePrivacyDlpV2DataProfilePubSubCondition.fromJson(
json_['pubsubCondition']
as core.Map<core.String, core.dynamic>)
: null,
topic: json_['topic'] as core.String?,
);