copyWith method

CreateForumTopic copyWith({
  1. int? chatId,
  2. String? name,
  3. ForumTopicIcon? icon,
})

Implementation

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