ReviewData constructor

ReviewData(
  1. {int? id,
  2. String? businessImage,
  3. String? businessName,
  4. String? businessAddress,
  5. int? businessId,
  6. int? userId,
  7. String? title,
  8. String? description,
  9. String? status,
  10. String? hasMedia,
  11. String? uploadOnFeed,
  12. String? impressedBy,
  13. double? rating,
  14. UserData? user,
  15. List<GalleryAttachmentArray>? reviewAttachment}
)

Implementation

ReviewData({
  this.id,
  this.businessImage,
  this.businessName,
  this.businessAddress,
  this.businessId,
  this.userId,
  this.title,
  this.description,
  this.status,
  this.hasMedia,
  this.uploadOnFeed,
  this.impressedBy,
  this.rating,
  this.user,
  this.reviewAttachment,
});