dev
dart 9 lines 227 Bytes
Raw
1 import 'package:cw_core/crypto_currency.dart';
2
3 class ExchangePair {
4 ExchangePair({required this.from, required this.to, this.reverse = true});
5
6 final CryptoCurrency from;
7 final CryptoCurrency to;
8 final bool reverse;
9 }