Price constructor

Price({
  1. required double? sellingPrice,
  2. required double? mrp,
  3. required double? discount,
  4. required double? minPrice,
  5. required double? maxPrice,
  6. required String? type,
  7. required bool? isSamePrice,
  8. required String? sTypename,
})

Implementation

Price(
    {required this.sellingPrice,
    required this.mrp,
    required this.discount,
    required this.minPrice,
    required this.maxPrice,
    required this.type,
    required this.isSamePrice,
    required this.sTypename});