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