PostList constructor

PostList({
  1. String? uuid,
  2. String? createdTs,
  3. String? updatedTs,
  4. String? createdBy,
  5. String? updatedBy,
  6. int? version,
  7. String? id,
  8. String? appId,
  9. String? title,
  10. String? contentHtml,
  11. String? contentMarkdown,
  12. PostType? postType,
  13. String? communityId,
  14. String? publishedTs,
  15. InteractionSummary? interactionSummary,
  16. CommunityContentVisibility? communityContentVisibility,
  17. CommunitiesList? community,
  18. Media? media,
  19. UserProfile? creator,
  20. bool? businessCommunity,
  21. bool? active,
  22. Poll? poll,
  23. bool? edited,
})

Implementation

PostList({
  this.uuid,
  this.createdTs,
  this.updatedTs,
  this.createdBy,
  this.updatedBy,
  this.version,
  this.id,
  this.appId,
  this.title,
  this.contentHtml,
  this.contentMarkdown,
  this.postType,
  this.communityId,
  this.publishedTs,
  this.interactionSummary,
  this.communityContentVisibility,
  this.community,
  this.media,
  this.creator,
  this.businessCommunity,
  this.active,
  this.poll,
  this.edited,
});