dev
dart 6 lines 98 Bytes
Raw
1 class Limits {
2 const Limits({this.min, this.max});
3
4 final double? min;
5 final double? max;
6 }