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