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