PriceRange constructor

PriceRange({
  1. required double min,
  2. required double max,
  3. required String currency,
  4. required String symbol,
})

Implementation

PriceRange({
  required this.min,
  required this.max,
  required this.currency,
  required this.symbol,
});