copyWith method

GetForumTopic copyWith({
  1. int? chatId,
  2. int? forumTopicId,
})

Implementation

GetForumTopic copyWith({int? chatId, int? forumTopicId}) => GetForumTopic(
  chatId: chatId ?? this.chatId,
  forumTopicId: forumTopicId ?? this.forumTopicId,
);