FeedData constructor

FeedData(
  1. {int? id,
  2. String? businessName,
  3. String? businessAddress,
  4. String? city,
  5. String? state,
  6. String? country,
  7. String? latitude,
  8. String? longitude,
  9. String? postalCode,
  10. String? businessDescription,
  11. String? businessImage,
  12. List<BusinessType>? businessType,
  13. String? status,
  14. String? musicTypeDisplay,
  15. List<MusicAffinityModel>? musicTypeList,
  16. List<String>? tags,
  17. List<GalleryAttachmentArray>? galleryAttachmentArray,
  18. int? userId,
  19. int? businessId,
  20. String? review,
  21. String? description,
  22. String? impressedBy,
  23. String? createdAt,
  24. double? rating,
  25. List<GalleryAttachmentArray>? reviewAttachment,
  26. String? captions,
  27. List<GalleryAttachmentArray>? attachment}
)

Implementation

FeedData({
  this.id,
  this.businessName,
  this.businessAddress,
  this.city,
  this.state,
  this.country,
  this.latitude,
  this.longitude,
  this.postalCode,
  this.businessDescription,
  this.businessImage,
  this.businessType,
  this.status,
  this.musicTypeDisplay,
  this.musicTypeList,
  this.tags,
  this.galleryAttachmentArray,
  this.userId,
  this.businessId,
  this.review,
  this.description,
  this.impressedBy,
  this.createdAt,
  this.rating,
  this.reviewAttachment,
  this.captions,
  this.attachment,
});