cake_wallet/lib/buy/buy_amount.dart

8 lines
190 B
Dart
Raw Normal View History

import 'package:flutter/foundation.dart';
class BuyAmount {
BuyAmount({@required this.sourceAmount, @required this.destAmount});
final double sourceAmount;
final double destAmount;
}