openFile method
Open a file in the IDE editor.
Implementation
Future<BridgeMessage> openFile(String filePath, {int? line, int? column}) =>
request(
BridgeMessage(
type: BridgeMessageType.openFile,
payload: {'filePath': filePath, 'line': ?line, 'column': ?column},
),
);