PostLikeModel constructor

PostLikeModel({
  1. required String documentID,
  2. required String postId,
  3. String? postCommentId,
  4. required String memberId,
  5. DateTime? timestamp,
  6. required String appId,
  7. LikeType? likeType,
})

Implementation

PostLikeModel({
  required this.documentID,
  required this.postId,
  this.postCommentId,
  required this.memberId,
  this.timestamp,
  required this.appId,
  this.likeType,
});