executeCommand method
Execute a workspace command on the server Wrapper around the 'workspace/executeCommand' request.
Implementation
Future<void> executeCommand(String command, List<dynamic>? arguments) async {
await _sendRequest(
method: 'workspace/executeCommand',
params: {'command': command, 'arguments': arguments ?? []},
);
}