SocialFeedData constructor

SocialFeedData(
  1. {int? id,
  2. String? refId,
  3. String? type,
  4. int? userId,
  5. String? addedBy,
  6. String? userImage,
  7. FeedData? feedData,
  8. String? distance,
  9. String? status,
  10. bool? isLike,
  11. bool? isFollow,
  12. int? likeCount,
  13. String? createdAt}
)

Implementation

SocialFeedData({
  this.id,
  this.refId,
  this.type,
  this.userId,
  this.addedBy,
  this.userImage,
  this.feedData,
  this.distance,
  this.status,
  this.isLike,
  this.isFollow,
  this.likeCount,
  this.createdAt,
});