CompletionResultsParams constructor

CompletionResultsParams(
  1. String id,
  2. int replacementOffset,
  3. int replacementLength,
  4. List<CompletionSuggestion> results,
  5. bool isLast, {
  6. String? libraryFile,
  7. List<IncludedSuggestionSet>? includedSuggestionSets,
  8. List<ElementKind>? includedElementKinds,
  9. List<IncludedSuggestionRelevanceTag>? includedSuggestionRelevanceTags,
})

Implementation

CompletionResultsParams(this.id, this.replacementOffset,
    this.replacementLength, this.results, this.isLast,
    {this.libraryFile,
    this.includedSuggestionSets,
    this.includedElementKinds,
    this.includedSuggestionRelevanceTags});