Product constructor

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

Implementation

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