commitChanges method

Future<BridgeResponse> commitChanges({
  1. required String message,
  2. List<String>? filePaths,
  3. bool amend = false,
})

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