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