cake_wallet/lib/exchange/exchange_pair.dart
2022-10-12 13:09:57 -04:00

12 lines
240 B
Dart

import 'package:cw_core/crypto_currency.dart';
class ExchangePair {
ExchangePair({
required this.from,
required this.to,
this.reverse = true});
final CryptoCurrency from;
final CryptoCurrency to;
final bool reverse;
}