GooglePrivacyDlpV2CryptoHashConfig.fromJson constructor

GooglePrivacyDlpV2CryptoHashConfig.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2CryptoHashConfig.fromJson(core.Map json_)
    : this(
        cryptoKey: json_.containsKey('cryptoKey')
            ? GooglePrivacyDlpV2CryptoKey.fromJson(
                json_['cryptoKey'] as core.Map<core.String, core.dynamic>)
            : null,
      );