mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
13 lines
285 B
Dart
13 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;
|
|
}
|