Product constructor

Product({
  1. required String name,
  2. required int price,
  3. required int discountPercentage,
  4. required String image,
})

Implementation

Product({
  required this.name,
  required this.price,
  required this.discountPercentage,
  required this.image,
});