Skip to content

Commit 108aa50

Browse files
committed
fix deprecated syntax
1 parent 6b48099 commit 108aa50

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/storage/keyring.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class KeyringPrivateStore {
190190
}
191191
}
192192

193-
Future<void> updateAccount(Map acc, {bool isExternal: false}) async {
193+
Future<void> updateAccount(Map acc, {bool isExternal = false}) async {
194194
if (isExternal) {
195195
updateContact(acc);
196196
} else {

lib/storage/keyringEVM.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class KeyringEVMPrivateStore {
127127
}
128128
}
129129

130-
Future<void> updateAccount(Map acc, {bool isExternal: false}) async {
130+
Future<void> updateAccount(Map acc, {bool isExternal = false}) async {
131131
if (isExternal) {
132132
updateContact(acc);
133133
} else {

0 commit comments

Comments
 (0)