IdeCapabilities constructor

const IdeCapabilities({
  1. bool supportsDiff = false,
  2. bool supportsInlineEdit = false,
  3. bool supportsTerminal = false,
  4. bool supportsDiagnostics = false,
  5. bool supportsSymbolNavigation = false,
  6. bool supportsMultiRoot = false,
  7. bool supportsFileWatcher = false,
  8. bool supportsCodeLens = false,
  9. String? ideVersion,
  10. String? extensionVersion,
})

Implementation

const IdeCapabilities({
  this.supportsDiff = false,
  this.supportsInlineEdit = false,
  this.supportsTerminal = false,
  this.supportsDiagnostics = false,
  this.supportsSymbolNavigation = false,
  this.supportsMultiRoot = false,
  this.supportsFileWatcher = false,
  this.supportsCodeLens = false,
  this.ideVersion,
  this.extensionVersion,
});