copyWith method
Implementation
MessageForumTopicCreated copyWith({
String? name,
bool? isNameImplicit,
ForumTopicIcon? icon,
}) => MessageForumTopicCreated(
name: name ?? this.name,
isNameImplicit: isNameImplicit ?? this.isNameImplicit,
icon: icon ?? this.icon,
);