diff --git a/lib/src/utils/crypto/encrypted_file.dart b/lib/src/utils/crypto/encrypted_file.dart index 1c71a120..754e5ced 100644 --- a/lib/src/utils/crypto/encrypted_file.dart +++ b/lib/src/utils/crypto/encrypted_file.dart @@ -22,12 +22,12 @@ import 'crypto.dart'; class EncryptedFile { EncryptedFile({ - this.data, + required this.data, required this.k, required this.iv, required this.sha256, }); - Uint8List? data; + Uint8List data; String k; String iv; String sha256;