LspSocketConfig constructor

LspSocketConfig({
  1. required String workspacePath,
  2. required String languageId,
  3. required String serverUrl,
  4. bool disableWarning = false,
  5. bool disableError = false,
})

Implementation

LspSocketConfig({
  required super.workspacePath,
  required super.languageId,
  required this.serverUrl,
  super.disableWarning,
  super.disableError,
}) : _channel = WebSocketChannel.connect(Uri.parse(serverUrl));