mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
Flutter upgrade
This commit is contained in:
parent
c921ad890a
commit
1beb18b045
505 changed files with 6657 additions and 5875 deletions
|
@ -53,13 +53,13 @@ abstract class HavenAccountListBase extends AccountList<Account> with Store {
|
|||
.toList();
|
||||
|
||||
@override
|
||||
Future addAccount({String label}) async {
|
||||
Future<void> addAccount({required String label}) async {
|
||||
await account_list.addAccount(label: label);
|
||||
update();
|
||||
}
|
||||
|
||||
@override
|
||||
Future setLabelAccount({int accountIndex, String label}) async {
|
||||
Future<void> setLabelAccount({required int accountIndex, required String label}) async {
|
||||
await account_list.setLabelForAccount(
|
||||
accountIndex: accountIndex, label: label);
|
||||
update();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue