mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
14 lines
No EOL
303 B
Dart
14 lines
No EOL
303 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
class BuyAmount {
|
|
BuyAmount({
|
|
required this.sourceAmount,
|
|
required this.destAmount,
|
|
this.achSourceAmount,
|
|
this.minAmount = 0});
|
|
|
|
final double sourceAmount;
|
|
final double destAmount;
|
|
final double? achSourceAmount;
|
|
final int minAmount;
|
|
} |