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