Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jerson committed Nov 30, 2024
1 parent 2d9e839 commit ecad25d
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion example/lib/encrypt_decrypt.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class EncryptAndDecrypt extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/encrypt_decrypt_bytes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class EncryptAndDecryptBytes extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/encrypt_decrypt_file.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class EncryptAndDecryptFile extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/encrypt_decrypt_symmetric.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class EncryptAndDecryptSymmetric extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/encrypt_decrypt_symmetric_bytes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class EncryptAndDecryptSymmetricBytes extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/encrypt_sign_decrypt_verify.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class EncryptSignAndDecryptVerify extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/metadata.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Metadata extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/sign_verify.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SignAndVerify extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/sign_verify_bytes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class SignAndVerifyBytes extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/sign_verify_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SignAndVerifyData extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
2 changes: 1 addition & 1 deletion example/lib/sign_verify_data_bytes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class SignAndVerifyDataBytes extends StatefulWidget {
super.key,
required this.title,
required KeyPair? keyPair,
}) : keyPair = keyPair;
}) : keyPair = keyPair;

final KeyPair? keyPair;
final String title;
Expand Down
3 changes: 1 addition & 2 deletions lib/web/openpgp_web.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import 'package:web/web.dart';

class OpenpgpPlugin {
var _counter = 0;
Worker worker =
Worker('assets/packages/openpgp/web/assets/worker.js'.toJS);
Worker worker = Worker('assets/packages/openpgp/web/assets/worker.js'.toJS);
Map<String, Completer<Uint8List>> completers = {};

static void registerWith(Registrar registrar) {
Expand Down

0 comments on commit ecad25d

Please sign in to comment.