You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cake_wallet/lib/store/dashboard/fiat_conversion_store.dart

14 lines
397 B

import 'package:cw_core/crypto_currency.dart';
import 'package:mobx/mobx.dart';
part 'fiat_conversion_store.g.dart';
class FiatConversionStore = FiatConversionStoreBase with _$FiatConversionStore;
abstract class FiatConversionStoreBase with Store {
FiatConversionStoreBase() : prices = ObservableMap<CryptoCurrency, double>();
@observable
ObservableMap<CryptoCurrency, double> prices;
}