PostEntity constructor

PostEntity({
  1. required String? authorId,
  2. Object? timestamp,
  3. required String? appId,
  4. String? feedId,
  5. String? postAppId,
  6. String? postPageId,
  7. Map<String, dynamic>? pageParameters,
  8. String? html,
  9. String? description,
  10. int? likes,
  11. int? dislikes,
  12. int? accessibleByGroup,
  13. List<String>? accessibleByMembers,
  14. List<String>? readAccess,
  15. int? archived,
  16. String? externalLink,
  17. List<MemberMediumContainerEntity>? memberMedia,
})

Implementation

PostEntity({
  required this.authorId,
  this.timestamp,
  required this.appId,
  this.feedId,
  this.postAppId,
  this.postPageId,
  this.pageParameters,
  this.html,
  this.description,
  this.likes,
  this.dislikes,
  this.accessibleByGroup,
  this.accessibleByMembers,
  this.readAccess,
  this.archived,
  this.externalLink,
  this.memberMedia,
});