fix: revert make bytes in EncryptedFile nullable

This commit is contained in:
Christian Pauly 2021-09-06 09:35:53 +02:00
parent e684a6d713
commit 646d7e2640
1 changed files with 2 additions and 2 deletions

View File

@ -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;