copyWith method

CreateForumTopic copyWith({
  1. int? chatId,
  2. String? name,
  3. bool? isNameImplicit,
  4. 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,
);