mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-02 02:17:39 +00:00
14 lines
285 B
Dart
14 lines
285 B
Dart
|
import 'package:mobx/mobx.dart';
|
||
|
|
||
|
part 'fiat_conversion_store.g.dart';
|
||
|
|
||
|
class FiatConversionStore = FiatConversionStoreBase
|
||
|
with _$FiatConversionStore;
|
||
|
|
||
|
abstract class FiatConversionStoreBase with Store {
|
||
|
FiatConversionStoreBase() : price = 0.0;
|
||
|
|
||
|
@observable
|
||
|
double price;
|
||
|
}
|