Skip to content

Commit

Permalink
revert to original encrypt function
Browse files Browse the repository at this point in the history
  • Loading branch information
zopagaduanjr committed Jun 8, 2023
1 parent 874c6f3 commit 4af8ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/flutter_des.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class FlutterDes {
if (string.isEmpty) {
return null;
}
final Uint8List crypt =
final Uint8List? crypt =
await _channel.invokeMethod('encrypt', [string, key, iv]);
return crypt;
}
Expand Down

0 comments on commit 4af8ec5

Please sign in to comment.