PostData constructor

PostData(
  1. {int? id,
  2. String? businessId,
  3. String? businessName,
  4. String? businessAddress,
  5. String? businessImage,
  6. String? userId,
  7. String? captions,
  8. String? status,
  9. List<GalleryAttachmentArray>? attachment,
  10. String? createdAt,
  11. String? updatedAt}
)

Implementation

PostData({
  this.id,
  this.businessId,
  this.businessName,
  this.businessAddress,
  this.businessImage,
  this.userId,
  this.captions,
  this.status,
  this.attachment,
  this.createdAt,
  this.updatedAt,
});