GooglePrivacyDlpV2CryptoDeterministicConfig.fromJson constructor
GooglePrivacyDlpV2CryptoDeterministicConfig.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2CryptoDeterministicConfig.fromJson(core.Map json_)
: this(
context: json_.containsKey('context')
? GooglePrivacyDlpV2FieldId.fromJson(
json_['context'] as core.Map<core.String, core.dynamic>)
: null,
cryptoKey: json_.containsKey('cryptoKey')
? GooglePrivacyDlpV2CryptoKey.fromJson(
json_['cryptoKey'] as core.Map<core.String, core.dynamic>)
: null,
surrogateInfoType: json_.containsKey('surrogateInfoType')
? GooglePrivacyDlpV2InfoType.fromJson(json_['surrogateInfoType']
as core.Map<core.String, core.dynamic>)
: null,
);