Skip to content

Commit dfe0890

Browse files
committed
updated version
1 parent 5edf291 commit dfe0890

13 files changed

+57
-30
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
## 1.2.0-nullsafety.3
2+
3+
- Format only
4+
15
## 1.2.0-nullsafety.2
26

37
- Using stable version
8+
49
## 1.2.0-nullsafety.1
510

611
- First version with initial support working

example/lib/encrypt_decrypt.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class EncryptAndDecrypt extends StatefulWidget {
1313
Key? key,
1414
required this.title,
1515
required KeyPair? keyPair,
16-
}) : keyPair = keyPair,
16+
}) : keyPair = keyPair,
1717
super(key: key);
1818

1919
final KeyPair? keyPair;

example/lib/encrypt_decrypt_bytes.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class EncryptAndDecryptBytes extends StatefulWidget {
1616
Key? key,
1717
required this.title,
1818
required KeyPair? keyPair,
19-
}) : keyPair = keyPair,
19+
}) : keyPair = keyPair,
2020
super(key: key);
2121

2222
final KeyPair? keyPair;

example/lib/encrypt_decrypt_file.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class EncryptAndDecryptFile extends StatefulWidget {
1414
Key? key,
1515
required this.title,
1616
required KeyPair? keyPair,
17-
}) : keyPair = keyPair,
17+
}) : keyPair = keyPair,
1818
super(key: key);
1919

2020
final KeyPair? keyPair;

example/lib/encrypt_decrypt_symmetric.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class EncryptAndDecryptSymmetric extends StatefulWidget {
1616
Key? key,
1717
required this.title,
1818
required KeyPair? keyPair,
19-
}) : keyPair = keyPair,
19+
}) : keyPair = keyPair,
2020
super(key: key);
2121

2222
final KeyPair? keyPair;

example/lib/encrypt_decrypt_symmetric_bytes.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class EncryptAndDecryptSymmetricBytes extends StatefulWidget {
1616
Key? key,
1717
required this.title,
1818
required KeyPair? keyPair,
19-
}) : keyPair = keyPair,
19+
}) : keyPair = keyPair,
2020
super(key: key);
2121

2222
final KeyPair? keyPair;

example/lib/shared/button_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class ButtonWidget extends StatefulWidget {
77
required this.result,
88
required String title,
99
required Function onPressed,
10-
}) : onPressed = onPressed,
10+
}) : onPressed = onPressed,
1111
title = title,
1212
super(key: key);
1313

example/lib/sign_verify.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class SignAndVerify extends StatefulWidget {
1313
Key? key,
1414
required this.title,
1515
required KeyPair? keyPair,
16-
}) : keyPair = keyPair,
16+
}) : keyPair = keyPair,
1717
super(key: key);
1818

1919
final KeyPair? keyPair;

example/lib/sign_verify_bytes.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class SignAndVerifyBytes extends StatefulWidget {
1616
Key? key,
1717
required this.title,
1818
required KeyPair? keyPair,
19-
}) : keyPair = keyPair,
19+
}) : keyPair = keyPair,
2020
super(key: key);
2121

2222
final KeyPair? keyPair;

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ packages:
263263
path: ".."
264264
relative: true
265265
source: path
266-
version: "1.2.0-nullsafety.2"
266+
version: "1.2.0-nullsafety.3"
267267
package_config:
268268
dependency: transitive
269269
description:

0 commit comments

Comments
 (0)