moveFile method
Move a file to a new location with refactoring.
Implementation
Future<BridgeResponse> moveFile({
required String sourcePath,
required String targetDirectory,
}) {
return _protocol.sendRequest('jetbrains/moveFile', {
'sourcePath': sourcePath,
'targetDirectory': targetDirectory,
});
}