GooglePrivacyDlpV2OtherInfoTypeSummary.fromJson constructor
GooglePrivacyDlpV2OtherInfoTypeSummary.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2OtherInfoTypeSummary.fromJson(core.Map json_)
: this(
estimatedPrevalence: json_.containsKey('estimatedPrevalence')
? json_['estimatedPrevalence'] as core.int
: null,
excludedFromAnalysis: json_.containsKey('excludedFromAnalysis')
? json_['excludedFromAnalysis'] as core.bool
: null,
infoType: json_.containsKey('infoType')
? GooglePrivacyDlpV2InfoType.fromJson(
json_['infoType'] as core.Map<core.String, core.dynamic>)
: null,
);