DocumentSymbol constructor

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

Implementation

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