sendTerminalText method
Send text to a terminal.
Implementation
Future<BridgeResponse> sendTerminalText(
String terminalId,
String text, {
bool addNewLine = true,
}) {
return _protocol.sendRequest('vscode/sendTerminalText', {
'terminalId': terminalId,
'text': text,
'addNewLine': addNewLine,
});
}