copyWith method

GetChatInviteLinkCounts copyWith({
  1. int? chatId,
})

Implementation

GetChatInviteLinkCounts copyWith({
  int? chatId,
}) => GetChatInviteLinkCounts(
  chatId: chatId ?? this.chatId,
);