PostLikeEntity constructor

PostLikeEntity({
  1. required String? postId,
  2. String? postCommentId,
  3. required String? memberId,
  4. Object? timestamp,
  5. required String? appId,
  6. int? likeType,
})

Implementation

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