DocumentChunk constructor

DocumentChunk({
  1. String? content,
  2. Document? document,
  3. String? id,
  4. String? parent,
  5. double? relevanceScore,
})

Implementation

DocumentChunk({
  this.content,
  this.document,
  this.id,
  this.parent,
  this.relevanceScore,
});