commitChanges method
Commit changes with a message.
Implementation
Future<BridgeResponse> commitChanges({
required String message,
List<String>? filePaths,
bool amend = false,
}) {
return _protocol.sendRequest('jetbrains/commitChanges', {
'message': message,
'filePaths': ?filePaths,
'amend': amend,
});
}