mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
10 lines
285 B
Dart
10 lines
285 B
Dart
|
import 'package:cake_wallet/store/app_store.dart';
|
||
|
import 'package:cw_core/wallet_base.dart';
|
||
|
import 'package:mobx/mobx.dart';
|
||
|
|
||
|
class AnimatedURModel with Store {
|
||
|
AnimatedURModel(this.appStore)
|
||
|
: wallet = appStore.wallet!;
|
||
|
final AppStore appStore;
|
||
|
final WalletBase wallet;
|
||
|
}
|