navigate method
Navigate to a symbol or position in the IDE.
Implementation
Future<BridgeMessage> navigate({
required String filePath,
int? line,
int? column,
String? symbol,
}) => request(
BridgeMessage(
type: BridgeMessageType.navigate,
payload: {
'filePath': filePath,
'line': ?line,
'column': ?column,
'symbol': ?symbol,
},
),
);