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