copyWith method

  1. @override
UpdateChatPendingJoinRequests copyWith({
  1. int? chatId,
  2. ChatJoinRequestsInfo? pendingJoinRequests,
  3. dynamic extra,
  4. 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,
);