PostCommentEntity constructor

PostCommentEntity({
  1. String? postId,
  2. String? postCommentId,
  3. String? memberId,
  4. Object? timestamp,
  5. required String? appId,
  6. String? comment,
  7. int? likes,
  8. int? dislikes,
  9. List<MemberMediumEntity>? memberMedia,
})

Implementation

PostCommentEntity({
  this.postId,
  this.postCommentId,
  this.memberId,
  this.timestamp,
  required this.appId,
  this.comment,
  this.likes,
  this.dislikes,
  this.memberMedia,
});