ItemReview constructor Null safety

ItemReview(
  1. {int? id,
  2. String? description,
  3. String? pros,
  4. String? cons,
  5. String? productCode,
  6. int? customerId,
  7. String? customerName,
  8. double? rating,
  9. String? date,
  10. int? zoneId}
)

Implementation

ItemReview({
  this.id,
  this.description,
  this.pros,
  this.cons,
  this.productCode,
  this.customerId,
  this.customerName,
  this.rating,
  this.date,
  this.zoneId,
});