Nip17EncryptedFile constructor

const Nip17EncryptedFile({
  1. required Uint8List ciphertext,
  2. required String key,
  3. required String nonce,
  4. required String encryptedSha256,
  5. required String originalSha256,
})

Implementation

const Nip17EncryptedFile({
  required this.ciphertext,
  required this.key,
  required this.nonce,
  required this.encryptedSha256,
  required this.originalSha256,
});