AsymmetricDecryptRequest.fromJson constructor

AsymmetricDecryptRequest.fromJson(
  1. Map json_
)

Implementation

AsymmetricDecryptRequest.fromJson(core.Map json_)
    : this(
        ciphertext: json_.containsKey('ciphertext')
            ? json_['ciphertext'] as core.String
            : null,
        ciphertextCrc32c: json_.containsKey('ciphertextCrc32c')
            ? json_['ciphertextCrc32c'] as core.String
            : null,
      );