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