cake_wallet/lib/exchange/limits.dart

6 lines
99 B
Dart
Raw Normal View History

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