copyWith method
Implementation
UpdateChatPendingJoinRequests copyWith({
int? chatId,
ChatJoinRequestsInfo? pendingJoinRequests,
}) => UpdateChatPendingJoinRequests(
chatId: chatId ?? this.chatId,
pendingJoinRequests: pendingJoinRequests ?? this.pendingJoinRequests,
);