copyWith method

UpdateChatPendingJoinRequests copyWith({
  1. int? chatId,
  2. ChatJoinRequestsInfo? pendingJoinRequests,
})

Implementation

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