EncryptResponse.fromJson constructor

EncryptResponse.fromJson(
  1. Map json_
)

Implementation

EncryptResponse.fromJson(core.Map json_)
    : this(
        ciphertext: json_['ciphertext'] as core.String?,
        ciphertextCrc32c: json_['ciphertextCrc32c'] as core.String?,
        name: json_['name'] as core.String?,
        protectionLevel: json_['protectionLevel'] as core.String?,
        verifiedAdditionalAuthenticatedDataCrc32c:
            json_['verifiedAdditionalAuthenticatedDataCrc32c'] as core.bool?,
        verifiedPlaintextCrc32c:
            json_['verifiedPlaintextCrc32c'] as core.bool?,
      );