mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 11:57:41 +00:00
86 lines
2 KiB
Dart
86 lines
2 KiB
Dart
/*
|
|
* This file is part of Stack Wallet.
|
|
*
|
|
* Copyright (c) 2023 Cypher Stack
|
|
* All Rights Reserved.
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
*
|
|
*/
|
|
|
|
import 'package:decimal/decimal.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:stackwallet/models/exchange/response_objects/estimate.dart';
|
|
import 'package:stackwallet/models/exchange/response_objects/trade.dart';
|
|
import 'package:stackwallet/utilities/enums/exchange_rate_type_enum.dart';
|
|
|
|
class IncompleteExchangeModel extends ChangeNotifier {
|
|
final String sendTicker;
|
|
final String receiveTicker;
|
|
|
|
final String rateInfo;
|
|
|
|
final Decimal sendAmount;
|
|
final Decimal receiveAmount;
|
|
|
|
final ExchangeRateType rateType;
|
|
|
|
final bool reversed;
|
|
final bool walletInitiated;
|
|
|
|
String? _recipientAddress;
|
|
|
|
String? get recipientAddress => _recipientAddress;
|
|
|
|
set recipientAddress(String? recipientAddress) {
|
|
if (_recipientAddress != recipientAddress) {
|
|
_recipientAddress = recipientAddress;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
|
|
String? _refundAddress;
|
|
|
|
String? get refundAddress => _refundAddress;
|
|
|
|
set refundAddress(String? refundAddress) {
|
|
if (_refundAddress != refundAddress) {
|
|
_refundAddress = refundAddress;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
|
|
Estimate? _estimate;
|
|
|
|
Estimate? get estimate => _estimate;
|
|
|
|
set estimate(Estimate? estimate) {
|
|
if (_estimate != estimate) {
|
|
_estimate = estimate;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
|
|
Trade? _trade;
|
|
|
|
Trade? get trade => _trade;
|
|
|
|
set trade(Trade? trade) {
|
|
if (_trade != trade) {
|
|
_trade = trade;
|
|
notifyListeners();
|
|
}
|
|
}
|
|
|
|
IncompleteExchangeModel({
|
|
required this.sendTicker,
|
|
required this.receiveTicker,
|
|
required this.rateInfo,
|
|
required this.sendAmount,
|
|
required this.receiveAmount,
|
|
required this.rateType,
|
|
required this.reversed,
|
|
required this.walletInitiated,
|
|
Estimate? estimate,
|
|
}) : _estimate = estimate;
|
|
}
|