fix: revert make bytes in EncryptedFile nullable
This commit is contained in:
parent
e684a6d713
commit
646d7e2640
|
|
@ -22,12 +22,12 @@ import 'crypto.dart';
|
||||||
|
|
||||||
class EncryptedFile {
|
class EncryptedFile {
|
||||||
EncryptedFile({
|
EncryptedFile({
|
||||||
this.data,
|
required this.data,
|
||||||
required this.k,
|
required this.k,
|
||||||
required this.iv,
|
required this.iv,
|
||||||
required this.sha256,
|
required this.sha256,
|
||||||
});
|
});
|
||||||
Uint8List? data;
|
Uint8List data;
|
||||||
String k;
|
String k;
|
||||||
String iv;
|
String iv;
|
||||||
String sha256;
|
String sha256;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue