LspSymbolInformation constructor

const LspSymbolInformation({
  1. required String name,
  2. required int kind,
  3. required LspLocation location,
  4. String? containerName,
})

Implementation

const LspSymbolInformation({
  required this.name,
  required this.kind,
  required this.location,
  this.containerName,
});