GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.fromJson constructor
GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.fromJson(core.Map json_)
: this(
commonAlphabet: json_.containsKey('commonAlphabet')
? json_['commonAlphabet'] as core.String
: null,
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,
customAlphabet: json_.containsKey('customAlphabet')
? json_['customAlphabet'] as core.String
: null,
radix: json_.containsKey('radix') ? json_['radix'] as core.int : null,
surrogateInfoType: json_.containsKey('surrogateInfoType')
? GooglePrivacyDlpV2InfoType.fromJson(json_['surrogateInfoType']
as core.Map<core.String, core.dynamic>)
: null,
);