2020-01-04 19:31:52 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/crypto_currency.dart';
|
2020-09-21 11:50:26 +00:00
|
|
|
import 'package:cake_wallet/exchange/trade_request.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
class ChangeNowRequest extends TradeRequest {
|
|
|
|
ChangeNowRequest(
|
|
|
|
{@required this.from,
|
|
|
|
@required this.to,
|
|
|
|
@required this.address,
|
|
|
|
@required this.amount,
|
|
|
|
@required this.refundAddress});
|
2020-01-08 12:26:34 +00:00
|
|
|
|
|
|
|
CryptoCurrency from;
|
|
|
|
CryptoCurrency to;
|
|
|
|
String address;
|
|
|
|
String amount;
|
|
|
|
String refundAddress;
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|