CakeWallet/lib/exchange/limits.dart

6 lines
99 B
Dart
Raw Normal View History

2020-01-04 21:31:52 +02:00
class Limits {
2020-01-08 14:26:34 +02:00
const Limits({this.min, this.max});
2022-10-12 13:09:57 -04:00
final double? min;
final double? max;
2020-01-04 21:31:52 +02:00
}