GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.fromJson constructor

GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.fromJson(
  1. Map json_
)

Implementation

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