Product constructor

Product({
  1. required String name,
  2. required String imageUrl,
  3. required String description,
  4. required double price,
  5. required int quantity,
})

Implementation

Product({
  required this.name,
  required this.imageUrl,
  required this.description,
  required this.price,
  required this.quantity,
});