Product constructor

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

Implementation

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