closeFile method

Future<BridgeResponse> closeFile(
  1. String filePath
)

Close a file tab.

Implementation

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