copyWith method
Implementation
EditForumTopic copyWith({
int? chatId,
int? forumTopicId,
String? name,
bool? editIconCustomEmoji,
int? iconCustomEmojiId,
}) => EditForumTopic(
chatId: chatId ?? this.chatId,
forumTopicId: forumTopicId ?? this.forumTopicId,
name: name ?? this.name,
editIconCustomEmoji: editIconCustomEmoji ?? this.editIconCustomEmoji,
iconCustomEmojiId: iconCustomEmojiId ?? this.iconCustomEmojiId,
);