copyWith method
Implementation
EditChatSubscriptionInviteLink copyWith({
int? chatId,
String? inviteLink,
String? name,
}) => EditChatSubscriptionInviteLink(
chatId: chatId ?? this.chatId,
inviteLink: inviteLink ?? this.inviteLink,
name: name ?? this.name,
);