copyWith method
Implementation
ChatEventForumTopicEdited copyWith({
ForumTopicInfo? oldTopicInfo,
ForumTopicInfo? newTopicInfo,
}) => ChatEventForumTopicEdited(
oldTopicInfo: oldTopicInfo ?? this.oldTopicInfo,
newTopicInfo: newTopicInfo ?? this.newTopicInfo,
);