HistorySearchQuery constructor

const HistorySearchQuery({
  1. String? text,
  2. String? sessionId,
  3. Set<HistoryEntryType>? types,
  4. Set<String>? roles,
  5. String? toolName,
  6. DateTime? after,
  7. DateTime? before,
  8. int? minTokens,
  9. int? maxTokens,
  10. int limit = 50,
  11. int offset = 0,
  12. bool sortDescending = true,
})

Implementation

const HistorySearchQuery({
  this.text,
  this.sessionId,
  this.types,
  this.roles,
  this.toolName,
  this.after,
  this.before,
  this.minTokens,
  this.maxTokens,
  this.limit = 50,
  this.offset = 0,
  this.sortDescending = true,
});