mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
12 lines
No EOL
246 B
Dart
12 lines
No EOL
246 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
class BuyAmount {
|
|
BuyAmount({
|
|
@required this.sourceAmount,
|
|
@required this.destAmount,
|
|
this.minAmount = 0});
|
|
|
|
final double sourceAmount;
|
|
final double destAmount;
|
|
final int minAmount;
|
|
} |