copyWith method

ChatInviteLinkMember copyWith({
  1. int? userId,
  2. int? joinedChatDate,
  3. int? approverUserId,
})

Implementation

ChatInviteLinkMember copyWith({
  int? userId,
  int? joinedChatDate,
  int? approverUserId,
}) => ChatInviteLinkMember(
  userId: userId ?? this.userId,
  joinedChatDate: joinedChatDate ?? this.joinedChatDate,
  approverUserId: approverUserId ?? this.approverUserId,
);