copyWith method
Implementation
PostLikeEntity copyWith({
String? documentID,
String? postId,
String? postCommentId,
String? memberId,
Object? timestamp,
String? appId,
int? likeType,
}) {
return PostLikeEntity(
postId: postId ?? this.postId,
postCommentId: postCommentId ?? this.postCommentId,
memberId: memberId ?? this.memberId,
timestamp: timestamp ?? this.timestamp,
appId: appId ?? this.appId,
likeType: likeType ?? this.likeType,
);
}