AsymmetricDecryptResponse.fromJson constructor

AsymmetricDecryptResponse.fromJson(
  1. Map json_
)

Implementation

AsymmetricDecryptResponse.fromJson(core.Map json_)
  : this(
      plaintext: json_['plaintext'] as core.String?,
      plaintextCrc32c: json_['plaintextCrc32c'] as core.String?,
      protectionLevel: json_['protectionLevel'] as core.String?,
      verifiedCiphertextCrc32c:
          json_['verifiedCiphertextCrc32c'] as core.bool?,
    );