Product constructor

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

Implementation

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