ArticlePost constructor

ArticlePost({
  1. String title = '',
  2. String content = '',
  3. String tags = '',
  4. bool commentable = false,
  5. bool notifyFollowers = false,
  6. int type = 0,
  7. int showInList = 0,
  8. String? rewardContent,
  9. String? rewardPoint,
  10. bool? anonymous,
  11. int? offerPoint,
})

Implementation

ArticlePost({
  this.title = '',
  this.content = '',
  this.tags = '',
  this.commentable = false,
  this.notifyFollowers = false,
  this.type = 0,
  this.showInList = 0,
  this.rewardContent,
  this.rewardPoint,
  this.anonymous,
  this.offerPoint,
});