ProductModel constructor

ProductModel({
  1. int? userId,
  2. int? id,
  3. String? title,
  4. String? body,
})

Implementation

ProductModel({
  this.userId,
  this.id,
  this.title,
  this.body,
});