createWorkspaceFile method
Creates a file in the workspace.
Implementation
Future<void> createWorkspaceFile(String path, String content) async {
_ensureAlive();
await _connection.sendRequest(
'session.workspace.createFile',
{'sessionId': sessionId, 'path': path, 'content': content},
const Duration(seconds: 10),
);
}