| 1 | import 'package:mobx/mobx.dart'; |
| 2 | import 'package:cake_wallet/entities/wallet_description.dart'; |
| 3 | |
| 4 | part 'wallet_list_store.g.dart'; |
| 5 | |
| 6 | class WalletListStore = WalletListStoreBase with _$WalletListStore; |
| 7 | |
| 8 | abstract class WalletListStoreBase with Store { |
| 9 | WalletListStoreBase() : wallets = ObservableList<WalletDescription>(); |
| 10 | |
| 11 | @observable |
| 12 | ObservableList<WalletDescription> wallets; |
| 13 | } |