copyWith method
Implementation
UpdateChatJoinResult copyWith({
int? queryId,
int? chatId,
ChatJoinRequestResult? result,
}) => UpdateChatJoinResult(
queryId: queryId ?? this.queryId,
chatId: chatId ?? this.chatId,
result: result ?? this.result,
);