exitServer method

Future<void> exitServer()

Exits the LSP server process.

Sends an 'exit' notification to the LSP server. This should be called after shutdown.

Implementation

Future<void> exitServer() async {
  await _sendNotification(method: 'exit', params: {});
}