LspDocumentSymbol constructor

const LspDocumentSymbol({
  1. required String name,
  2. required int kind,
  3. String? detail,
  4. required LspRange range,
  5. required LspRange selectionRange,
  6. List<LspDocumentSymbol> children = const [],
})

Implementation

const LspDocumentSymbol({
  required this.name,
  required this.kind,
  this.detail,
  required this.range,
  required this.selectionRange,
  this.children = const [],
});