HandymanReview constructor

HandymanReview(
  1. {int? id,
  2. int? customerId,
  3. num? rating,
  4. String? review,
  5. int? serviceId,
  6. int? bookingId,
  7. int? handymanId,
  8. String? handymanName,
  9. String? handymanProfileImage,
  10. String? customerName,
  11. String? customerProfileImage,
  12. String? createdAt}
)

Implementation

HandymanReview({
  this.id,
  this.customerId,
  this.rating,
  this.review,
  this.serviceId,
  this.bookingId,
  this.handymanId,
  this.handymanName,
  this.handymanProfileImage,
  this.customerName,
  this.customerProfileImage,
  this.createdAt,
});