GooglePrivacyDlpV2Dictionary.fromJson constructor
GooglePrivacyDlpV2Dictionary.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2Dictionary.fromJson(core.Map json_)
: this(
cloudStoragePath: json_.containsKey('cloudStoragePath')
? GooglePrivacyDlpV2CloudStoragePath.fromJson(
json_['cloudStoragePath']
as core.Map<core.String, core.dynamic>)
: null,
wordList: json_.containsKey('wordList')
? GooglePrivacyDlpV2WordList.fromJson(
json_['wordList'] as core.Map<core.String, core.dynamic>)
: null,
);