CompletionItem constructor

CompletionItem({
  1. String? detail,
  2. required String label,
  3. int? length,
  4. int? selectionLength,
  5. int? selectionStart,
  6. String? sortText,
  7. int? start,
  8. String? text,
  9. CompletionItemType? type,
})

Implementation

CompletionItem({
  this.detail,
  required this.label,
  this.length,
  this.selectionLength,
  this.selectionStart,
  this.sortText,
  this.start,
  this.text,
  this.type,
});