mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
19 lines
503 B
Dart
19 lines
503 B
Dart
|
import 'package:flutter/foundation.dart';
|
||
|
import 'package:cake_wallet/src/domain/common/crypto_currency.dart';
|
||
|
import 'package:cake_wallet/src/domain/exchange/trade_request.dart';
|
||
|
|
||
|
class ChangeNowRequest extends TradeRequest {
|
||
|
CryptoCurrency from;
|
||
|
CryptoCurrency to;
|
||
|
String address;
|
||
|
String amount;
|
||
|
String refundAddress;
|
||
|
|
||
|
ChangeNowRequest(
|
||
|
{@required this.from,
|
||
|
@required this.to,
|
||
|
@required this.address,
|
||
|
@required this.amount,
|
||
|
@required this.refundAddress});
|
||
|
}
|