feat: disconnect wallet

This commit is contained in:
2025-05-26 13:51:15 +01:00
parent 47bed26df6
commit 484bf67951
63 changed files with 3260 additions and 1604 deletions

View File

@ -144,7 +144,7 @@ class LoginAccount {
pubkey: json["pubKey"],
privateKey: json["privateKey"],
wallet:
json.containsKey("wallet")
json.containsKey("wallet") && json["wallet"] != null
? WalletConfig.fromJson(json["wallet"])
: null,
);