copyWith method
Implementation
ToggleForumTopicIsPinned copyWith({
int? chatId,
int? forumTopicId,
bool? isPinned,
}) => ToggleForumTopicIsPinned(
chatId: chatId ?? this.chatId,
forumTopicId: forumTopicId ?? this.forumTopicId,
isPinned: isPinned ?? this.isPinned,
);