executeCommand method

Future<void> executeCommand(
  1. String command,
  2. List? arguments
)

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 ?? []},
  );
}