moveFile method

Future<BridgeResponse> moveFile({
  1. required String sourcePath,
  2. required String targetDirectory,
})

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,
  });
}