Clause constructor

Clause({
  1. List<String>? fields,
  2. int? boost,
  3. bool? usePipeline,
  4. QueryPresence? presence,
  5. int? wildcard,
  6. String term = '',
  7. int? editDistance,
})

Implementation

Clause({
  this.fields,
  this.boost,
  this.usePipeline,
  this.presence,
  this.wildcard,
  this.term = '',
  this.editDistance,
});