copyWith method
UpdateNewChatJoinRequest
copyWith({
- int? chatId,
- ChatJoinRequest? request,
- int? userChatId,
- ChatInviteLink? inviteLink,
- int? queryId,
Implementation
UpdateNewChatJoinRequest copyWith({
int? chatId,
ChatJoinRequest? request,
int? userChatId,
ChatInviteLink? inviteLink,
int? queryId,
}) => UpdateNewChatJoinRequest(
chatId: chatId ?? this.chatId,
request: request ?? this.request,
userChatId: userChatId ?? this.userChatId,
inviteLink: inviteLink ?? this.inviteLink,
queryId: queryId ?? this.queryId,
);