PriceRange constructor

PriceRange({
  1. required String? id,
  2. required int? minQty,
  3. required int? maxQty,
  4. required double? discount,
  5. required double? sellingPrice,
  6. required String? sTypename,
})

Implementation

PriceRange(
    {required this.id,
    required this.minQty,
    required this.maxQty,
    required this.discount,
    required this.sellingPrice,
    required this.sTypename});