copyWith method
UpdateChatPendingJoinRequests
copyWith({
- int? chatId,
- ChatJoinRequestsInfo? pendingJoinRequests,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateChatPendingJoinRequests copyWith({
int? chatId,
ChatJoinRequestsInfo? pendingJoinRequests,
dynamic extra,
int? clientId,
}) => UpdateChatPendingJoinRequests(
chatId: chatId ?? this.chatId,
pendingJoinRequests: pendingJoinRequests ?? this.pendingJoinRequests,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);