showDiff method

Future<BridgeResponse> showDiff({
  1. String? filePath,
})

Show diff for a file (or all changes if no path given).

Implementation

Future<BridgeResponse> showDiff({String? filePath}) {
  return _protocol.sendRequest('jetbrains/showDiff', {'filePath': ?filePath});
}