cake_wallet/lib/view_model/settings/privacy_settings_view_model.dart

34 lines
1 KiB
Dart
Raw Normal View History

2023-03-01 21:44:15 +00:00
import 'package:cake_wallet/entities/exchange_api_mode.dart';
2022-11-23 17:06:41 +00:00
import 'package:cake_wallet/store/settings_store.dart';
import 'package:mobx/mobx.dart';
import 'package:cake_wallet/entities/fiat_api_mode.dart';
2022-11-23 17:06:41 +00:00
part 'privacy_settings_view_model.g.dart';
2022-12-01 19:21:51 +00:00
class PrivacySettingsViewModel = PrivacySettingsViewModelBase with _$PrivacySettingsViewModel;
2022-11-23 17:06:41 +00:00
abstract class PrivacySettingsViewModelBase with Store {
PrivacySettingsViewModelBase(this._settingsStore);
final SettingsStore _settingsStore;
2022-11-25 20:51:07 +00:00
@computed
2023-03-01 21:44:15 +00:00
ExchangeApiMode get exchangeStatus => _settingsStore.exchangeStatus;
2022-11-25 20:51:07 +00:00
2022-11-23 17:06:41 +00:00
@computed
2022-12-01 19:21:51 +00:00
bool get shouldSaveRecipientAddress => _settingsStore.shouldSaveRecipientAddress;
2022-11-23 17:06:41 +00:00
@computed
FiatApiMode get fiatApiMode => _settingsStore.fiatApiMode;
2022-11-23 17:06:41 +00:00
@action
2022-12-01 19:21:51 +00:00
void setShouldSaveRecipientAddress(bool value) => _settingsStore.shouldSaveRecipientAddress = value;
2022-11-25 20:51:07 +00:00
@action
2023-03-02 15:13:25 +00:00
void setExchangeApiMode(ExchangeApiMode value) => _settingsStore.exchangeStatus = value;
@action
void setFiatMode(FiatApiMode fiatApiMode) => _settingsStore.fiatApiMode = fiatApiMode;
2022-12-01 19:21:51 +00:00
}