copyWith method
Implementation
DeleteChatFolderInviteLink copyWith({
int? chatFolderId,
String? inviteLink,
}) =>
DeleteChatFolderInviteLink(
chatFolderId: chatFolderId ?? this.chatFolderId,
inviteLink: inviteLink ?? this.inviteLink,
);