FeedsDatum constructor

FeedsDatum({
  1. int? feedsDatumCreatedAt,
  2. String? createdAt,
  3. String? updatedAt,
  4. int? id,
  5. int? userId,
  6. String? message,
  7. List<Tag>? tags,
  8. dynamic urgencyId,
  9. int? expiry,
  10. String? bountyStatus,
  11. List<SuggestedUser>? suggestedUsers,
  12. List<Tag>? suggestedTags,
  13. String? lastAnswered,
  14. int? publishedAt,
  15. bool? newAnswer,
  16. bool? communityOnly,
  17. List<Hunter>? hunters,
  18. User? user,
  19. List<BountyCommunityMap>? bountyCommunityMaps,
})

Implementation

FeedsDatum({
  this.feedsDatumCreatedAt,
  this.createdAt,
  this.updatedAt,
  this.id,
  this.userId,
  this.message,
  this.tags,
  this.urgencyId,
  this.expiry,
  this.bountyStatus,
  this.suggestedUsers,
  this.suggestedTags,
  this.lastAnswered,
  this.publishedAt,
  this.newAnswer,
  this.communityOnly,
  this.hunters,
  this.user,
  this.bountyCommunityMaps,
});