copyWith method
Implementation
GetForumTopicHistory copyWith({
int? chatId,
int? forumTopicId,
int? fromMessageId,
int? offset,
int? limit,
}) => GetForumTopicHistory(
chatId: chatId ?? this.chatId,
forumTopicId: forumTopicId ?? this.forumTopicId,
fromMessageId: fromMessageId ?? this.fromMessageId,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);