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