LspLocationLink constructor

const LspLocationLink({
  1. required String targetUri,
  2. required LspRange targetRange,
  3. required LspRange targetSelectionRange,
  4. LspRange? originSelectionRange,
})

Implementation

const LspLocationLink({
  required this.targetUri,
  required this.targetRange,
  required this.targetSelectionRange,
  this.originSelectionRange,
});