openFile method
Open a file in the editor.
Implementation
Future<BridgeResponse> openFile(
String uri, {
int? line,
int? character,
bool? preview,
}) {
return _protocol.sendRequest('vscode/openFile', {
'uri': uri,
'line': ?line,
'character': ?character,
'preview': ?preview,
});
}