mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
18 lines
493 B
Dart
18 lines
493 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:cake_wallet/entities/crypto_currency.dart';
|
|
import 'package:cake_wallet/exchange/trade_request.dart';
|
|
|
|
class MorphTokenRequest extends TradeRequest {
|
|
MorphTokenRequest(
|
|
{@required this.from,
|
|
@required this.to,
|
|
@required this.address,
|
|
@required this.amount,
|
|
@required this.refundAddress});
|
|
|
|
CryptoCurrency from;
|
|
CryptoCurrency to;
|
|
String address;
|
|
String amount;
|
|
String refundAddress;
|
|
}
|