PostCommentModel constructor

PostCommentModel({
  1. required String documentID,
  2. String? postId,
  3. String? postCommentId,
  4. String? memberId,
  5. DateTime? timestamp,
  6. required String appId,
  7. String? comment,
  8. int? likes,
  9. int? dislikes,
  10. List<MemberMediumModel>? memberMedia,
})

Implementation

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