copyWith method
Implementation
MessageForumTopicEdited copyWith({
String? name,
bool? editIconCustomEmojiId,
int? iconCustomEmojiId,
}) => MessageForumTopicEdited(
name: name ?? this.name,
editIconCustomEmojiId: editIconCustomEmojiId ?? this.editIconCustomEmojiId,
iconCustomEmojiId: iconCustomEmojiId ?? this.iconCustomEmojiId,
);