ProductModel constructor

const ProductModel({
  1. required int id,
  2. required String title,
  3. required double price,
  4. required String description,
  5. required String category,
  6. required String image,
})

Implementation

const ProductModel({
  required this.id,
  required this.title,
  required this.price,
  required this.description,
  required this.category,
  required this.image,
});