TermSearchResult<T> constructor

TermSearchResult<T>(
  1. T result,
  2. Set<String> matchedTerms,
  3. Set<TermMatch> matchedTokens,
  4. bool matchAll,
)

Implementation

TermSearchResult(
    this.result, this.matchedTerms, this.matchedTokens, this.matchAll)
    : score = Score.zero();